Object doesn't support this object in javascript

Hi i’m new to javascript but i think my code works well in firefox and other browser, but when i try to run in IE i got the error “object doesn’t support this object in javascript”.

Can anyone tell me why i always got this error. Many thanks…

Here is my whole code.


<?php
session_start();
if(isset($_SESSION['username'])){
include_once("conn.php");


  $pendtickets = array();
  $newtickets=array();
	 $selectTicketsQuery = mssql_query("Select * from tblTicket inner join tblAssign on tblTicket.TickNo=tblAssign.TicketNo and tblAssign .AssignTo!= '$_SESSION[username]' ");
	 while($pendticket = mssql_fetch_array($selectTicketsQuery)){
        $pendtickets[] = $pendticket;
		}
	$newtickno=mssql_query("Select * from tblTicket where TickNo not in (select TicketNo from tblAssign)");
	 while($newticket = mssql_fetch_array($newtickno)){
        $newtickets[] = $newticket;
		}
	$Assignto= mssql_query("Select * from MISPIC");
	while($AssignOptionassignto = mssql_fetch_array($Assignto)){
	$AssignOptionsassignto[] = $AssignOptionassignto;
	}
	
	$Assign= mssql_query("Select * from MISPIC ");
							while($AssignOption = mssql_fetch_array($Assign)){
							$AssignOptions[] = $AssignOption;
							}
	
?>
	<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
	<meta http-equiv="content-type" content="text/html; charset=utf-8" />

	<script type="text/javascript" language="javascript" src="jquery./jquery.js"></script>
	<script type="text/javascript" language="javascript" src="jquery./jquery.dataTables.js"></script>
	<script type="text/javascript" charset="utf-8">
		$(document).ready(function() {
		$('#example').dataTable();
		} );
	</script>	
	<script type="text/javascript" charset="utf-8">


</script>

<?php echo '<meta http-equiv="refresh" content="60;url="UnAssignticket.php">';?>
	  <style type="text/css">
form {
    float:left;
}
</style>
	</head>
		
<body id="dt_example">
<br/>
<br/>
<p>
<table  BORDERCOLOR="#0B0B0B" border='1' bgcolor="#F5F5FA" width="100%"  align='center'>
<tr>
	<td >
		<img src='img/pend.png'>
	</td>
</tr>
<tr>
	<td align='center'>
		<div align='left' id="containerpend">
			<div id="demo">
				<table BORDERCOLOR="#0B0B0B"  frame="box" cellpadding="0" cellspacing="0" frame="box"  class="display" id="example"> 
		
			<thead>
				<tr>
					<th><a title="Ticket Number">Ticket No.</a></th>
					<th><a title="Ticket Create By">Create By</a></th>
					<th><a title="Ticket Create Date">Create Date</a></th>
					<th><a title="Date Assigned">Date Assigned</a></th>
					<th><a title="Problem Error">Problem Description</a></th>
					<th><a title="Ticket Assigned To">Assign To</a></th>
					<th><a title="User Action">Action</a></th>
				</tr>
			</thead>
			<tbody>			
					<?php	foreach($pendtickets as $pendticket) 
				
					{?>
					
							<tr class="GradeA">
								<td class='center'><?php echo "<a href='viewassignticket.php?id={$pendticket['TickNo']}&uname={$pendticket['UserName']}' title='View Ticket'>".$pendticket['TicketNo']."</a>"?></td>
								<td class='center'><?php echo $pendticket['UserName'];?></td>
								<td class='center'><?php echo $pendticket['DateCreate'];?></td>
								<td class='center'><?php echo $pendticket['DateAssign'];?></td>
								<td class='center'><?php echo $pendticket['Category']." (".$pendticket['Subcat'].")"?></td>
								<td class='center'><?php echo $pendticket['AssignTo'];?></td>
								<td class='center'>
								
								<form  id='transfer'  name='transfer' class='transfer'  action='forwardtick.php' method='POST' >
								<?php 	$_SESSION['ticketassign']=$pendticket['TicketNo']; 
										$_SESSION['nameassign']=$pendticket['AssignTo']; 
								?>
										<select  name='Trans' onchange="Transferticket('<?php echo $pendticket['TickNo'];?>',$(this));">
											<option value="0">Please Select</option>
											<?php foreach($AssignOptions as $TransferOption){ 
											 if ($TransferOption['MISPIC'] != $pendticket['AssignTo'])	
											echo '<option value="', $TransferOption['MISPIC'], '">', $TransferOption['MISPIC'], '</option>'; }	
											
											?> 
										</select>
									
									</form>
								</td>
								
							</tr>
					<?php }	?>
						<?php foreach($newtickets as $newticket) { ?>
							<tr class="GradeA">
								<td class='center'><?php echo "<a href='ticketinfo.php?id={$newticket['TickNo']}' title='View Ticket'>".$newticket['TickNo']."</a>"?></td>
								<td class='center'><?php echo $newticket['UserName'];?></td>
								<td class='center'><?php echo $newticket['DateCreate'];?></td>
								<td class='center'><?php echo $newticket['DateAssign'];?></td>
								<td class='center'><?php echo $newticket['Category']." (".$newticket['Subcat'].")"?></td>
								<td class='center'><?php echo $newticket['AssignTo'];?></td>
								
								<td class='center'>
							
									<form id='assigned'  name="assigned" class='assigned'  action='asstoticket.php' method='POST'  >
									<?php 	$_SESSION['assignticketno']=$newticket['TickNo']; ?>
										<select style="width:100%" id='assignto' name='assignto' onchange="TicketAss('<?php echo $newticket['TickNo'];?>','<?php echo $newticket['UserName'];?>',$(this));" >
										
											<option value="0">Please Select</option>
											
											<?php foreach($AssignOptionsassignto as $TransferOptionassignto){ 
											echo '<option  value="', $TransferOptionassignto['MISPIC'], '">', $TransferOptionassignto['MISPIC'], '</option>'; 
										}
											?> 
										</select>
							
									</form>
								</td>
							
							</tr>
					<?php }	?>
			</tbody>
				<tfoot>
					<th>Ticket No</th>
					<th>Create By</th>
					<th>Create Date</th>
					<th>Date Assigned</th>
					<th>Problem Description</th>
					<th>Assign To</th>
					<th>Action</th>	    
			</tfoot>			
		</table>
	
			</div>
		</div>
	</td>	
</tr>
</table	>
</p>

<script type="text/javascript" charset="utf-8">
function Transferticket(ticket,uVal) {
    if (window.confirm('Transfer this ticket number ' + ticket + ' to ' + uVal.val())) {

    //this is where i got the error
	   window.document.forms['transfer'].submit();
	
		
    }else{
	uVal.val(0);
	};
}
var forms = document.getElementsByTagName('transfer'),
    i;
for (i = 0; i < forms.length; i += 1) {
    if (forms[i].className === 'transfer') {
        forms[i].onchange = Transferticket;
    }
}
</script>

<script type="text/javascript" charset="utf-8">

function TicketAss(ticketno,cname,sVal) {
    if (window.confirm('Assign this ticket number ' + ticketno + ' to ' + sVal.val())) {

      //this is where i got the error
       window.document.forms['assigned'].submit();


    }else{
	sVal.val(0);
	};
}

var forms1 = document.getElementsByTagName('assigned'),
    i;
for (i = 0; i < forms1.length; i += 1) {
    if (forms[i].className === 'assigned') {
        forms[i].onchange = TicketAss;
    }
}

</script>

	<style type="text/css" title="currentStyle">
		@import "css/demo_page.css";
		@import "css/demo_table.css";
	</style>

	</body>
	</html>
<?php
	
}else{ //not logged in
    header('location: login.php');
}
?>

Thanks for the reply…

i tried it already but still the same…any more suggestion?

Simply remove the window. part as document. is fine on its own

Take a closer look at this part:


var forms1 = document.getElementsByTagName('assigned'),
    i;
for (i = 0; i < forms1.length; i += 1) {
    if (forms[i].className === 'assigned') {
        forms[i].onchange = TicketAss;
    }
}

Thanks for the replay.

I notice it and made a changes but still the same error appear…



<script type="text/javascript" charset="utf-8">
function Transferticket(ticket,uVal) {
    if (window.confirm('Transfer this ticket number ' + ticket + ' to ' + uVal.val())) {
       	   document.forms['transfer'].submit();
	}else{
	uVal.val(0);
	};
}
var trans = document.getElementsByTagName('transfer'),
    y;
for (i = 0; y < trans.length; y += 1) {
    if (trans[y].className === 'transfer') {
        trans[y].onchange = Transferticket;
    }
}
</script>

<script type="text/javascript" charset="utf-8">

function TicketAss(ticketno,cname,sVal) {
    if (window.confirm('Assign this ticket number ' + ticketno + ' to ' + sVal.val())) {
       document.forms['assigned'].submit();
    }else{
	sVal.val(0);
	};
}
var ass = document.getElementsByTagName('assigned'),
    i;
for (i = 0; i < ass.length; i += 1) {
    if (ass[i].className === 'assigned') {
        ass[i].onchange = TicketAss;
    }
}
</script>

Next up, are uVal and sVal appropriate jQuery objects?

yes…they are,i tried to use window.location.href

i works fine,but when i tied to use that syntax i got an error.

Can you provide more information about the error? Where it’s happening, what line number is the error occurring on, or even what the object is supposed to be?

How about linking us to a test page where the problem can be experienced?

Sorry i can’t give you a link…

but here is the information
Here is what the error said:“Object doesen’t support this property or method”
its on line 179
and char 12

This the Javascript code.



<script type="text/javascript" charset="utf-8">
function Transferticket(ticket,uVal) {
    if (window.confirm('Transfer this ticket number ' + ticket + ' to ' + uVal.val())) {
            //here is where the error occur line 179
           document.forms['transfer'].submit();
    }else{
    uVal.val(0);
    };
}
var trans = document.getElementsByTagName('transfer'),
    y;
for (i = 0; y < trans.length; y += 1) {
    if (trans[y].className === 'transfer') {
        trans[y].onchange = Transferticket;
    }
}
</script>
 
<script type="text/javascript" charset="utf-8">
 
function TicketAss(ticketno,cname,sVal) {
    if (window.confirm('Assign this ticket number ' + ticketno + ' to ' + sVal.val())) {
      //here is where the error occur
       document.forms['assigned'].submit();
    }else{
    sVal.val(0);
    };
}
var ass = document.getElementsByTagName('assigned'),
    i;
for (i = 0; i < ass.length; i += 1) {
    if (ass[i].className === 'assigned') {
        ass[i].onchange = TicketAss;
    }
}
</script>

And here is the whole code…


<?php
session_start();
if(isset($_SESSION['username'])){
include_once("conn.php");


  $pendtickets = array();
  $newtickets=array();
	 $selectTicketsQuery = mssql_query("Select * from tblTicket inner join tblAssign on tblTicket.TickNo=tblAssign.TicketNo and tblAssign .AssignTo!= '$_SESSION[username]' ");
	 while($pendticket = mssql_fetch_array($selectTicketsQuery)){
        $pendtickets[] = $pendticket;
		}
	$newtickno=mssql_query("Select * from tblTicket where TickNo not in (select TicketNo from tblAssign)");
	 while($newticket = mssql_fetch_array($newtickno)){
        $newtickets[] = $newticket;
		}
	$Assignto= mssql_query("Select * from MISPIC");
	while($AssignOptionassignto = mssql_fetch_array($Assignto)){
	$AssignOptionsassignto[] = $AssignOptionassignto;
	}
	
	$Assign= mssql_query("Select * from MISPIC ");
							while($AssignOption = mssql_fetch_array($Assign)){
							$AssignOptions[] = $AssignOption;
							}
	
?>
	<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
	<meta http-equiv="content-type" content="text/html; charset=utf-8" />

	<script type="text/javascript" language="javascript" src="jquery./jquery.js"></script>
	<script type="text/javascript" language="javascript" src="jquery./jquery.dataTables.js"></script>
	<script type="text/javascript" charset="utf-8">
		$(document).ready(function() {
		$('#example').dataTable();
		} );
	</script>	
<style type="text/css" title="currentStyle">
		@import "css/demo_page.css";
		@import "css/demo_table.css";
	</style>

<?php echo '<meta http-equiv="refresh" content="60;url="UnAssignticket.php">';?>
	  <style type="text/css">
form {
    float:left;
}
</style>
	</head>
		
<body id="dt_example">
<br/>
<br/>
<p>
<table  BORDERCOLOR="#0B0B0B" border='1' bgcolor="#F5F5FA" width="100%"  align='center'>
<tr>
	<td >
		<img src='img/pend.png'>
	</td>
</tr>
<tr>
	<td align='center'>
		<div align='left' id="containerpend">
			<div id="demo">
				<table BORDERCOLOR="#0B0B0B"  frame="box" cellpadding="0" cellspacing="0" frame="box"  class="display" id="example"> 
		
			<thead>
				<tr>
					<th><a title="Ticket Number">Ticket No.</a></th>
					<th><a title="Ticket Create By">Create By</a></th>
					<th><a title="Ticket Create Date">Create Date</a></th>
					<th><a title="Date Assigned">Date Assigned</a></th>
					<th><a title="Problem Error">Problem Description</a></th>
					<th><a title="Ticket Assigned To">Assign To</a></th>
					<th><a title="User Action">Action</a></th>
				</tr>
			</thead>
			<tbody>			
					<?php	foreach($pendtickets as $pendticket) 
				
					{?>
					
							<tr class="GradeA">
								<td class='center'><?php echo "<a href='viewassignticket.php?id={$pendticket['TickNo']}&uname={$pendticket['UserName']}' title='View Ticket'>".$pendticket['TicketNo']."</a>"?></td>
								<td class='center'><?php echo $pendticket['UserName'];?></td>
								<td class='center'><?php echo $pendticket['DateCreate'];?></td>
								<td class='center'><?php echo $pendticket['DateAssign'];?></td>
								<td class='center'><?php echo $pendticket['Category']." (".$pendticket['Subcat'].")"?></td>
								<td class='center'><?php echo $pendticket['AssignTo'];?></td>
								<td class='center'>
								
								<form   name='transfer'  action='forwardtick.php' method='POST' >
								<?php 	$_SESSION['ticketassign']=$pendticket['TicketNo']; 
										$_SESSION['nameassign']=$pendticket['AssignTo']; 
								?>
										<select  class='Trans' id='Trans' name='Trans' onchange="Transferticket('<?php echo $pendticket['TickNo'];?>',$(this));">
											<option value="0">Please Select</option>
											<?php foreach($AssignOptions as $TransferOption){ 
											 if ($TransferOption['MISPIC'] != $pendticket['AssignTo'])	
											echo '<option value="', $TransferOption['MISPIC'], '">', $TransferOption['MISPIC'], '</option>'; }	
											
											?> 
										</select>
									
									</form>
								</td>
								
							</tr>
					<?php }	?>
						<?php foreach($newtickets as $newticket) { ?>
							<tr class="GradeA">
								<td class='center'><?php echo "<a href='ticketinfo.php?id={$newticket['TickNo']}' title='View Ticket'>".$newticket['TickNo']."</a>"?></td>
								<td class='center'><?php echo $newticket['UserName'];?></td>
								<td class='center'><?php echo $newticket['DateCreate'];?></td>
								<td class='center'><?php echo $newticket['DateAssign'];?></td>
								<td class='center'><?php echo $newticket['Category']." (".$newticket['Subcat'].")"?></td>
								<td class='center'><?php echo $newticket['AssignTo'];?></td>
								
								<td class='center'>
							
									<form  id='assigned' name='assigned'  class='assigned'  action='asstoticket.php' method='POST'  >
									<?php 	$_SESSION['assignticketno']=$newticket['TickNo']; ?>
										<select style="width:100%" id='assignto' name='assignto' onchange="TicketAss('<?php echo $newticket['TickNo'];?>','<?php echo $newticket['UserName'];?>',$(this));" >
										
											<option value="0">Please Select</option>
											
											<?php foreach($AssignOptionsassignto as $TransferOptionassignto){ 
											echo '<option  value="', $TransferOptionassignto['MISPIC'], '">', $TransferOptionassignto['MISPIC'], '</option>'; 
										}
											?> 
										</select>
							
									</form>
								</td>
							
							</tr>
					<?php }	?>
			</tbody>
				<tfoot>
					<th>Ticket No</th>
					<th>Create By</th>
					<th>Create Date</th>
					<th>Date Assigned</th>
					<th>Problem Description</th>
					<th>Assign To</th>
					<th>Action</th>	    
			</tfoot>			
		</table>
	
			</div>
		</div>
	</td>	
</tr>
</table	>
</p>

<script type="text/javascript" charset="utf-8">
function Transferticket(ticket,uVal) {
    if (window.confirm('Transfer this ticket number ' + ticket + ' to ' + uVal.val())) {
       	   document.forms['transfer'].submit();
		 
	}else{
	uVal.val(0);
	};
}
var trans = document.getElementsByTagName('transfer'),
    y;
for (i = 0; y < trans.length; y += 1) {
    if (trans[y].className === 'transfer') {
        trans[y].onchange = Transferticket;
    }
}
</script>

<script type="text/javascript" charset="utf-8">

function TicketAss(ticketno,cname,sVal) {
    if (window.confirm('Assign this ticket number ' + ticketno + ' to ' + sVal.val())) {
       document.forms['assigned'].submit();
    }else{
	sVal.val(0);
	};
}
var ass = document.getElementsByTagName('assigned'),
    i;
for (i = 0; i < ass.length; i += 1) {
    if (ass[i].className === 'assigned') {
        ass[i].onchange = TicketAss;
    }
}
</script>

	

	</body>
	</html>
<?php
	
}else{ //not logged in
    header('location: login.php');
}
?>


What’s on line 179?

If you’re using Internet Explorer, get some better info about the problem by going in to the advanced internet options, and enabling “Display a notification about every script error”

It said on this syntax below


document.forms['transfer'].submit();

Object doesn’t support this property or method

Now work out what the problem is.

Why is it that submit() is not a valid method of document.forms[‘transfer’]

that’s why i’am lost. read other forum it works fine for them but i dont get it to work…

Can you help me…

Can you post the HTML source of a web page that experiences the problem?

This is my complete source code.


<?php
session_start();
if(isset($_SESSION['username'])){
include_once("conn.php");
 
 
  $pendtickets = array();
  $newtickets=array();
     $selectTicketsQuery = mssql_query("Select * from tblTicket inner join tblAssign on tblTicket.TickNo=tblAssign.TicketNo and tblAssign .AssignTo!= '$_SESSION[username]' ");
     while($pendticket = mssql_fetch_array($selectTicketsQuery)){
        $pendtickets[] = $pendticket;
        }
    $newtickno=mssql_query("Select * from tblTicket where TickNo not in (select TicketNo from tblAssign)");
     while($newticket = mssql_fetch_array($newtickno)){
        $newtickets[] = $newticket;
        }
    $Assignto= mssql_query("Select * from MISPIC");
    while($AssignOptionassignto = mssql_fetch_array($Assignto)){
    $AssignOptionsassignto[] = $AssignOptionassignto;
    }
   
    $Assign= mssql_query("Select * from MISPIC ");
                            while($AssignOption = mssql_fetch_array($Assign)){
                            $AssignOptions[] = $AssignOption;
                            }
   
?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
 
    <script type="text/javascript" language="javascript" src="jquery./jquery.js"></script>
    <script type="text/javascript" language="javascript" src="jquery./jquery.dataTables.js"></script>
    <script type="text/javascript" charset="utf-8">
        $(document).ready(function() {
        $('#example').dataTable();
        } );
    </script>   
<style type="text/css" title="currentStyle">
        @import "css/demo_page.css";
        @import "css/demo_table.css";
    </style>
 
<?php echo '<meta http-equiv="refresh" content="60;url="UnAssignticket.php">';?>
      <style type="text/css">
form {
    float:left;
}
</style>
    </head>
       
<body id="dt_example">
<br/>
<br/>
<p>
<table  BORDERCOLOR="#0B0B0B" border='1' bgcolor="#F5F5FA" width="100%"  align='center'>
<tr>
    <td >
        <img src='img/pend.png'>
    </td>
</tr>
<tr>
    <td align='center'>
        <div align='left' id="containerpend">
            <div id="demo">
                <table BORDERCOLOR="#0B0B0B"  frame="box" cellpadding="0" cellspacing="0" frame="box"  class="display" id="example">
       
            <thead>
                <tr>
                    <th><a title="Ticket Number">Ticket No.</a></th>
                    <th><a title="Ticket Create By">Create By</a></th>
                    <th><a title="Ticket Create Date">Create Date</a></th>
                    <th><a title="Date Assigned">Date Assigned</a></th>
                    <th><a title="Problem Error">Problem Description</a></th>
                    <th><a title="Ticket Assigned To">Assign To</a></th>
                    <th><a title="User Action">Action</a></th>
                </tr>
            </thead>
            <tbody>   
                    <?php   foreach($pendtickets as $pendticket)
               
                    {?>
                   
                            <tr class="GradeA">
                                <td class='center'><?php echo "<a href='viewassignticket.php?id={$pendticket['TickNo']}&uname={$pendticket['UserName']}' title='View Ticket'>".$pendticket['TicketNo']."</a>"?></td>
                                <td class='center'><?php echo $pendticket['UserName'];?></td>
                                <td class='center'><?php echo $pendticket['DateCreate'];?></td>
                                <td class='center'><?php echo $pendticket['DateAssign'];?></td>
                                <td class='center'><?php echo $pendticket['Category']." (".$pendticket['Subcat'].")"?></td>
                                <td class='center'><?php echo $pendticket['AssignTo'];?></td>
                                <td class='center'>
                               
                                <form   name='transfer'  action='forwardtick.php' method='POST' >
                                <?php   $_SESSION['ticketassign']=$pendticket['TicketNo'];
                                        $_SESSION['nameassign']=$pendticket['AssignTo'];
                                ?>
                                        <select  class='Trans' id='Trans' name='Trans' onchange="Transferticket('<?php echo $pendticket['TickNo'];?>',$(this));">
                                            <option value="0">Please Select</option>
                                            <?php foreach($AssignOptions as $TransferOption){
                                             if ($TransferOption['MISPIC'] != $pendticket['AssignTo']) 
                                            echo '<option value="', $TransferOption['MISPIC'], '">', $TransferOption['MISPIC'], '</option>'; } 
                                           
                                            ?>
                                        </select>
                                   
                                    </form>
                                </td>
                               
                            </tr>
                    <?php } ?>
                        <?php foreach($newtickets as $newticket) { ?>
                            <tr class="GradeA">
                                <td class='center'><?php echo "<a href='ticketinfo.php?id={$newticket['TickNo']}' title='View Ticket'>".$newticket['TickNo']."</a>"?></td>
                                <td class='center'><?php echo $newticket['UserName'];?></td>
                                <td class='center'><?php echo $newticket['DateCreate'];?></td>
                                <td class='center'><?php echo $newticket['DateAssign'];?></td>
                                <td class='center'><?php echo $newticket['Category']." (".$newticket['Subcat'].")"?></td>
                                <td class='center'><?php echo $newticket['AssignTo'];?></td>
                               
                                <td class='center'>
                           
                                    <form  id='assigned' name='assigned'  class='assigned'  action='asstoticket.php' method='POST'  >
                                    <?php   $_SESSION['assignticketno']=$newticket['TickNo']; ?>
                                        <select style="width:100%" id='assignto' name='assignto' onchange="TicketAss('<?php echo $newticket['TickNo'];?>','<?php echo $newticket['UserName'];?>',$(this));" >
                                       
                                            <option value="0">Please Select</option>
                                           
                                            <?php foreach($AssignOptionsassignto as $TransferOptionassignto){
                                            echo '<option  value="', $TransferOptionassignto['MISPIC'], '">', $TransferOptionassignto['MISPIC'], '</option>';
                                        }
                                            ?>
                                        </select>
                           
                                    </form>
                                </td>
                           
                            </tr>
                    <?php } ?>
            </tbody>
                <tfoot>
                    <th>Ticket No</th>
                    <th>Create By</th>
                    <th>Create Date</th>
                    <th>Date Assigned</th>
                    <th>Problem Description</th>
                    <th>Assign To</th>
                    <th>Action</th>    
            </tfoot>           
        </table>
   
            </div>
        </div>
    </td>   
</tr>
</table >
</p>
 
<script type="text/javascript" charset="utf-8">
function Transferticket(ticket,uVal) {
    if (window.confirm('Transfer this ticket number ' + ticket + ' to ' + uVal.val())) {
           document.forms['transfer'].submit();
        
    }else{
    uVal.val(0);
    };
}
var trans = document.getElementsByTagName('transfer'),
    y;
for (i = 0; y < trans.length; y += 1) {
    if (trans[y].className === 'transfer') {
        trans[y].onchange = Transferticket;
    }
}
</script>
 
<script type="text/javascript" charset="utf-8">
 
function TicketAss(ticketno,cname,sVal) {
    if (window.confirm('Assign this ticket number ' + ticketno + ' to ' + sVal.val())) {
       document.forms['assigned'].submit();
    }else{
    sVal.val(0);
    };
}
var ass = document.getElementsByTagName('assigned'),
    i;
for (i = 0; i < ass.length; i += 1) {
    if (ass[i].className === 'assigned') {
        ass[i].onchange = TicketAss;
    }
}
</script>
 
   
 
    </body>
    </html>
<?php
   
}else{ //not logged in
    header('location: login.php');
}
?>

JavaScript does not interact with PHP. It’s the rendered HTML code that JavaScript works with, and it is within that same HTML code where your problem lies.

All you have to do is to choose “View Source” after right-clicking on your web page. It’s not that difficult.

Sorry here is the Code.


  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
 
    <script type="text/javascript" language="javascript" src="jquery./jquery.js"></script>
    <script type="text/javascript" language="javascript" src="jquery./jquery.dataTables.js"></script>
    <script type="text/javascript" charset="utf-8">
        $(document).ready(function() {
        $('#example').dataTable();
        } );
    </script>   
<style type="text/css" title="currentStyle">
        @import "css/demo_page.css";
        @import "css/demo_table.css";
    </style>
 
<meta http-equiv="refresh" content="60;url="UnAssignticket.php">      <style type="text/css">
form {
    float:left;
}
</style>
    </head>
       
<body id="dt_example">
<br/>
<br/>
<p>
<table  BORDERCOLOR="#0B0B0B" border='1' bgcolor="#F5F5FA" width="100%"  align='center'>
<tr>
    <td >
        <img src='img/pend.png'>
    </td>
</tr>
<tr>
    <td align='center'>
        <div align='left' id="containerpend">
            <div id="demo">
                <table BORDERCOLOR="#0B0B0B"  frame="box" cellpadding="0" cellspacing="0" frame="box"  class="display" id="example">
       
            <thead>
                <tr>
                    <th><a title="Ticket Number">Ticket No.</a></th>
                    <th><a title="Ticket Create By">Create By</a></th>
                    <th><a title="Ticket Create Date">Create Date</a></th>
                    <th><a title="Date Assigned">Date Assigned</a></th>
                    <th><a title="Problem Error">Problem Description</a></th>
                    <th><a title="Ticket Assigned To">Assign To</a></th>
                    <th><a title="User Action">Action</a></th>
                </tr>
            </thead>
            <tbody>   
                                       
                            <tr class="GradeA">
                                <td class='center'><a href='viewassignticket.php?id=110520008&uname=User1' title='View Ticket'>110520008</a></td>
                                <td class='center'>User1</td>
                                <td class='center'>05/20/2011  2:36PM</td>
                                <td class='center'>05/21/2011  6:28PM</td>
                                <td class='center'>PC (Application)</td>
                                <td class='center'>OliverG</td>
                                <td class='center'>
                               
                                <form   name='transfer'  action='forwardtick.php' method='POST' >
                                                                        <select  class='Trans' id='Trans' name='Trans' onchange="Transferticket('110520008',$(this));">
                                            <option value="0">Please Select</option>
                                            <option value="JoshA">JoshA</option><option value="popo">popo</option><option value="Bert">Bert</option><option value="RiedB">RiedB</option><option value="ReidC">ReidC</option><option value="ReidD">ReidD</option><option value="ReidE">ReidE</option><option value="ReidF">ReidF</option><option value="ReidP">ReidP</option><option value="ReidZ">ReidZ</option><option value="ReidM">ReidM</option><option value="ReidJ">ReidJ</option>                                        </select>
                                   
                                    </form>
                                </td>
                               
                            </tr>
                                       
                            <tr class="GradeA">
                                <td class='center'><a href='viewassignticket.php?id=110523001&uname=User1' title='View Ticket'>110523001 </a></td>
                                <td class='center'>User1</td>
                                <td class='center'>05/23/2011 11:58AM</td>
                                <td class='center'>05/23/2011 11:59AM</td>
                                <td class='center'>PC (Application)</td>
                                <td class='center'>popo</td>
                                <td class='center'>
                               
                                <form   name='transfer'  action='forwardtick.php' method='POST' >
                                                                        <select  class='Trans' id='Trans' name='Trans' onchange="Transferticket('110523001',$(this));">
                                            <option value="0">Please Select</option>
                                            <option value="JoshA">JoshA</option><option value="OliverG">OliverG</option><option value="Bert">Bert</option><option value="RiedB">RiedB</option><option value="ReidC">ReidC</option><option value="ReidD">ReidD</option><option value="ReidE">ReidE</option><option value="ReidF">ReidF</option><option value="ReidP">ReidP</option><option value="ReidZ">ReidZ</option><option value="ReidM">ReidM</option><option value="ReidJ">ReidJ</option>                                        </select>
                                   
                                    </form>
                                </td>
                               
                            </tr>
                                       
                            <tr class="GradeA">
                                <td class='center'><a href='viewassignticket.php?id=110520005&uname=Weng1' title='View Ticket'>110520005</a></td>
                                <td class='center'>Weng1</td>
                                <td class='center'>05/20/2011 9:58AM</td>
                                <td class='center'>May 20 2011  9:59AM</td>
                                <td class='center'>PC (Application)</td>
                                <td class='center'>popo</td>
                                <td class='center'>
                               
                                <form   name='transfer'  action='forwardtick.php' method='POST' >
                                                                        <select  class='Trans' id='Trans' name='Trans' onchange="Transferticket('110520005',$(this));">
                                            <option value="0">Please Select</option>
                                            <option value="JoshA">JoshA</option><option value="OliverG">OliverG</option><option value="Bert">Bert</option><option value="RiedB">RiedB</option><option value="ReidC">ReidC</option><option value="ReidD">ReidD</option><option value="ReidE">ReidE</option><option value="ReidF">ReidF</option><option value="ReidP">ReidP</option><option value="ReidZ">ReidZ</option><option value="ReidM">ReidM</option><option value="ReidJ">ReidJ</option>                                        </select>
                                   
                                    </form>
                                </td>
                               
                            </tr>
                                       
                            <tr class="GradeA">
                                <td class='center'><a href='viewassignticket.php?id=110520005&uname=Weng1' title='View Ticket'>110520005</a></td>
                                <td class='center'>Weng1</td>
                                <td class='center'>05/20/2011 9:58AM</td>
                                <td class='center'>06/06/2011 12:47AM</td>
                                <td class='center'>PC (Application)</td>
                                <td class='center'>OliverG</td>
                                <td class='center'>
                               
                                <form   name='transfer'  action='forwardtick.php' method='POST' >
                                                                        <select  class='Trans' id='Trans' name='Trans' onchange="Transferticket('110520005',$(this));">
                                            <option value="0">Please Select</option>
                                            <option value="JoshA">JoshA</option><option value="popo">popo</option><option value="Bert">Bert</option><option value="RiedB">RiedB</option><option value="ReidC">ReidC</option><option value="ReidD">ReidD</option><option value="ReidE">ReidE</option><option value="ReidF">ReidF</option><option value="ReidP">ReidP</option><option value="ReidZ">ReidZ</option><option value="ReidM">ReidM</option><option value="ReidJ">ReidJ</option>                                        </select>
                                   
                                    </form>
                                </td>
                               
                            </tr>
                                       
                            <tr class="GradeA">
                                <td class='center'><a href='viewassignticket.php?id=110520006&uname=Weng' title='View Ticket'>110520006</a></td>
                                <td class='center'>Weng</td>
                                <td class='center'>05/20/201110:05AM</td>
                                <td class='center'>06/06/2011 12:48AM</td>
                                <td class='center'>PC (Application)</td>
                                <td class='center'>OliverG</td>
                                <td class='center'>
                               
                                <form   name='transfer'  action='forwardtick.php' method='POST' >
                                                                        <select  class='Trans' id='Trans' name='Trans' onchange="Transferticket('110520006',$(this));">
                                            <option value="0">Please Select</option>
                                            <option value="JoshA">JoshA</option><option value="popo">popo</option><option value="Bert">Bert</option><option value="RiedB">RiedB</option><option value="ReidC">ReidC</option><option value="ReidD">ReidD</option><option value="ReidE">ReidE</option><option value="ReidF">ReidF</option><option value="ReidP">ReidP</option><option value="ReidZ">ReidZ</option><option value="ReidM">ReidM</option><option value="ReidJ">ReidJ</option>                                        </select>
                                   
                                    </form>
                                </td>
                               
                            </tr>
                                       
                            <tr class="GradeA">
                                <td class='center'><a href='viewassignticket.php?id=110520006&uname=Weng' title='View Ticket'>110520006</a></td>
                                <td class='center'>Weng</td>
                                <td class='center'>05/20/201110:05AM</td>
                                <td class='center'>May 20 2011 10:06AM</td>
                                <td class='center'>PC (Application)</td>
                                <td class='center'>Bert</td>
                                <td class='center'>
                               
                                <form   name='transfer'  action='forwardtick.php' method='POST' >
                                                                        <select  class='Trans' id='Trans' name='Trans' onchange="Transferticket('110520006',$(this));">
                                            <option value="0">Please Select</option>
                                            <option value="JoshA">JoshA</option><option value="popo">popo</option><option value="OliverG">OliverG</option><option value="RiedB">RiedB</option><option value="ReidC">ReidC</option><option value="ReidD">ReidD</option><option value="ReidE">ReidE</option><option value="ReidF">ReidF</option><option value="ReidP">ReidP</option><option value="ReidZ">ReidZ</option><option value="ReidM">ReidM</option><option value="ReidJ">ReidJ</option>                                        </select>
                                   
                                    </form>
                                </td>
                               
                            </tr>
                                       
                            <tr class="GradeA">
                                <td class='center'><a href='viewassignticket.php?id=110520009&uname=User' title='View Ticket'>110520009</a></td>
                                <td class='center'>User</td>
                                <td class='center'>05/20/2011  3:34PM</td>
                                <td class='center'>05/20/2011  5:31PM</td>
                                <td class='center'>PC (Application)</td>
                                <td class='center'>Admin</td>
                                <td class='center'>
                               
                                <form   name='transfer'  action='forwardtick.php' method='POST' >
                                                                        <select  class='Trans' id='Trans' name='Trans' onchange="Transferticket('110520009',$(this));">
                                            <option value="0">Please Select</option>
                                            <option value="JoshA">JoshA</option><option value="popo">popo</option><option value="OliverG">OliverG</option><option value="Bert">Bert</option><option value="RiedB">RiedB</option><option value="ReidC">ReidC</option><option value="ReidD">ReidD</option><option value="ReidE">ReidE</option><option value="ReidF">ReidF</option><option value="ReidP">ReidP</option><option value="ReidZ">ReidZ</option><option value="ReidM">ReidM</option><option value="ReidJ">ReidJ</option>                                        </select>
                                   
                                    </form>
                                </td>
                               
                            </tr>
                                       
                            <tr class="GradeA">
                                <td class='center'><a href='viewassignticket.php?id=110520011&uname=popo1' title='View Ticket'>110520011 </a></td>
                                <td class='center'>popo1</td>
                                <td class='center'>05/20/2011  3:38PM</td>
                                <td class='center'>05/24/2011  3:18PM</td>
                                <td class='center'>PC (Application)</td>
                                <td class='center'>popo</td>
                                <td class='center'>
                               
                                <form   name='transfer'  action='forwardtick.php' method='POST' >
                                                                        <select  class='Trans' id='Trans' name='Trans' onchange="Transferticket('110520011',$(this));">
                                            <option value="0">Please Select</option>
                                            <option value="JoshA">JoshA</option><option value="OliverG">OliverG</option><option value="Bert">Bert</option><option value="RiedB">RiedB</option><option value="ReidC">ReidC</option><option value="ReidD">ReidD</option><option value="ReidE">ReidE</option><option value="ReidF">ReidF</option><option value="ReidP">ReidP</option><option value="ReidZ">ReidZ</option><option value="ReidM">ReidM</option><option value="ReidJ">ReidJ</option>                                        </select>
                                   
                                    </form>
                                </td>
                               
                            </tr>
                                       
                            <tr class="GradeA">
                                <td class='center'><a href='viewassignticket.php?id=110520012&uname=Weng1' title='View Ticket'>110520012 </a></td>
                                <td class='center'>Weng1</td>
                                <td class='center'>05/20/2011  3:38PM</td>
                                <td class='center'>05/23/2011 11:46AM</td>
                                <td class='center'>PC (Application)</td>
                                <td class='center'>popo</td>
                                <td class='center'>
                               
                                <form   name='transfer'  action='forwardtick.php' method='POST' >
                                                                        <select  class='Trans' id='Trans' name='Trans' onchange="Transferticket('110520012',$(this));">
                                            <option value="0">Please Select</option>
                                            <option value="JoshA">JoshA</option><option value="OliverG">OliverG</option><option value="Bert">Bert</option><option value="RiedB">RiedB</option><option value="ReidC">ReidC</option><option value="ReidD">ReidD</option><option value="ReidE">ReidE</option><option value="ReidF">ReidF</option><option value="ReidP">ReidP</option><option value="ReidZ">ReidZ</option><option value="ReidM">ReidM</option><option value="ReidJ">ReidJ</option>                                        </select>
                                   
                                    </form>
                                </td>
                               
                            </tr>
                                       
                            <tr class="GradeA">
                                <td class='center'><a href='viewassignticket.php?id=110520013&uname=popo1' title='View Ticket'>110520013 </a></td>
                                <td class='center'>popo1</td>
                                <td class='center'>05/20/2011  3:40PM</td>
                                <td class='center'>05/24/2011  3:21PM</td>
                                <td class='center'>PC (Application)</td>
                                <td class='center'>OliverG</td>
                                <td class='center'>
                               
                                <form   name='transfer'  action='forwardtick.php' method='POST' >
                                                                        <select  class='Trans' id='Trans' name='Trans' onchange="Transferticket('110520013',$(this));">
                                            <option value="0">Please Select</option>
                                            <option value="JoshA">JoshA</option><option value="popo">popo</option><option value="Bert">Bert</option><option value="RiedB">RiedB</option><option value="ReidC">ReidC</option><option value="ReidD">ReidD</option><option value="ReidE">ReidE</option><option value="ReidF">ReidF</option><option value="ReidP">ReidP</option><option value="ReidZ">ReidZ</option><option value="ReidM">ReidM</option><option value="ReidJ">ReidJ</option>                                        </select>
                                   
                                    </form>
                                </td>
                               
                            </tr>
                                       
                            <tr class="GradeA">
                                <td class='center'><a href='viewassignticket.php?id=110520014&uname=Weng' title='View Ticket'>110520014</a></td>
                                <td class='center'>Weng</td>
                                <td class='center'>05/20/2011  3:40PM</td>
                                <td class='center'>06/06/2011  1:13AM</td>
                                <td class='center'>PC (Application)</td>
                                <td class='center'>OliverG</td>
                                <td class='center'>
                               
                                <form   name='transfer'  action='forwardtick.php' method='POST' >
                                                                        <select  class='Trans' id='Trans' name='Trans' onchange="Transferticket('110520014',$(this));">
                                            <option value="0">Please Select</option>
                                            <option value="JoshA">JoshA</option><option value="popo">popo</option><option value="Bert">Bert</option><option value="RiedB">RiedB</option><option value="ReidC">ReidC</option><option value="ReidD">ReidD</option><option value="ReidE">ReidE</option><option value="ReidF">ReidF</option><option value="ReidP">ReidP</option><option value="ReidZ">ReidZ</option><option value="ReidM">ReidM</option><option value="ReidJ">ReidJ</option>                                        </select>
                                   
                                    </form>
                                </td>
                               
                            </tr>
                                                                        <tr class="GradeA">
                                <td class='center'><a href='ticketinfo.php?id=110523004' title='View Ticket'>110523004</a></td>
                                <td class='center'>Weng1</td>
                                <td class='center'>05/23/2011  4:37PM</td>
                                <td class='center'></td>
                                <td class='center'>PC (Application)</td>
                                <td class='center'></td>
                               
                                <td class='center'>
                           
                                    <form  id='assigned' name='assigned'  class='assigned'  action='asstoticket.php' method='POST'  >
                                                                            <select style="width:100%" id='assignto' name='assignto' onchange="TicketAss('110523004','Weng1',$(this));" >
                                       
                                            <option value="0">Please Select</option>
                                           
                                            <option  value="JoshA">JoshA</option><option  value="popo">popo</option><option  value="OliverG">OliverG</option><option  value="Bert">Bert</option><option  value="RiedB">RiedB</option><option  value="ReidC">ReidC</option><option  value="ReidD">ReidD</option><option  value="ReidE">ReidE</option><option  value="ReidF">ReidF</option><option  value="ReidP">ReidP</option><option  value="ReidZ">ReidZ</option><option  value="ReidM">ReidM</option><option  value="ReidJ">ReidJ</option>                                        </select>
                           
                                    </form>
                                </td>
                           
                            </tr>
                                                <tr class="GradeA">
                                <td class='center'><a href='ticketinfo.php?id=110524001' title='View Ticket'>110524001</a></td>
                                <td class='center'>Weng1</td>
                                <td class='center'>05/24/2011 10:26AM</td>
                                <td class='center'></td>
                                <td class='center'>PC (Application)</td>
                                <td class='center'></td>
                               
                                <td class='center'>
                           
                                    <form  id='assigned' name='assigned'  class='assigned'  action='asstoticket.php' method='POST'  >
                                                                            <select style="width:100%" id='assignto' name='assignto' onchange="TicketAss('110524001','Weng1',$(this));" >
                                       
                                            <option value="0">Please Select</option>
                                           
                                            <option  value="JoshA">JoshA</option><option  value="popo">popo</option><option  value="OliverG">OliverG</option><option  value="Bert">Bert</option><option  value="RiedB">RiedB</option><option  value="ReidC">ReidC</option><option  value="ReidD">ReidD</option><option  value="ReidE">ReidE</option><option  value="ReidF">ReidF</option><option  value="ReidP">ReidP</option><option  value="ReidZ">ReidZ</option><option  value="ReidM">ReidM</option><option  value="ReidJ">ReidJ</option>                                        </select>
                           
                                    </form>
                                </td>
                           
                            </tr>
                                                <tr class="GradeA">
                                <td class='center'><a href='ticketinfo.php?id=110524002' title='View Ticket'>110524002</a></td>
                                <td class='center'>User1</td>
                                <td class='center'>05/24/2011  2:21PM</td>
                                <td class='center'></td>
                                <td class='center'>PC (Application)</td>
                                <td class='center'></td>
                               
                                <td class='center'>
                           
                                    <form  id='assigned' name='assigned'  class='assigned'  action='asstoticket.php' method='POST'  >
                                                                            <select style="width:100%" id='assignto' name='assignto' onchange="TicketAss('110524002','User1',$(this));" >
                                       
                                            <option value="0">Please Select</option>
                                           
                                            <option  value="JoshA">JoshA</option><option  value="popo">popo</option><option  value="OliverG">OliverG</option><option  value="Bert">Bert</option><option  value="RiedB">RiedB</option><option  value="ReidC">ReidC</option><option  value="ReidD">ReidD</option><option  value="ReidE">ReidE</option><option  value="ReidF">ReidF</option><option  value="ReidP">ReidP</option><option  value="ReidZ">ReidZ</option><option  value="ReidM">ReidM</option><option  value="ReidJ">ReidJ</option>                                        </select>
                           
                                    </form>
                                </td>
                           
                            </tr>
                                                <tr class="GradeA">
                                <td class='center'><a href='ticketinfo.php?id=110524003' title='View Ticket'>110524003</a></td>
                                <td class='center'>User1</td>
                                <td class='center'>05/24/2011  2:23PM</td>
                                <td class='center'></td>
                                <td class='center'>PC (Application)</td>
                                <td class='center'></td>
                               
                                <td class='center'>
                           
                                    <form  id='assigned' name='assigned'  class='assigned'  action='asstoticket.php' method='POST'  >
                                                                            <select style="width:100%" id='assignto' name='assignto' onchange="TicketAss('110524003','User1',$(this));" >
                                       
                                            <option value="0">Please Select</option>
                                           
                                            <option  value="JoshA">JoshA</option><option  value="popo">popo</option><option  value="OliverG">OliverG</option><option  value="Bert">Bert</option><option  value="RiedB">RiedB</option><option  value="ReidC">ReidC</option><option  value="ReidD">ReidD</option><option  value="ReidE">ReidE</option><option  value="ReidF">ReidF</option><option  value="ReidP">ReidP</option><option  value="ReidZ">ReidZ</option><option  value="ReidM">ReidM</option><option  value="ReidJ">ReidJ</option>                                        </select>
                           
                                    </form>
                                </td>
                           
                            </tr>
                                                <tr class="GradeA">
                                <td class='center'><a href='ticketinfo.php?id=110524004' title='View Ticket'>110524004</a></td>
                                <td class='center'>User1</td>
                                <td class='center'>05/24/2011  2:23PM</td>
                                <td class='center'></td>
                                <td class='center'>PC (Application)</td>
                                <td class='center'></td>
                               
                                <td class='center'>
                           
                                    <form  id='assigned' name='assigned'  class='assigned'  action='asstoticket.php' method='POST'  >
                                                                            <select style="width:100%" id='assignto' name='assignto' onchange="TicketAss('110524004','User1',$(this));" >
                                       
                                            <option value="0">Please Select</option>
                                           
                                            <option  value="JoshA">JoshA</option><option  value="popo">popo</option><option  value="OliverG">OliverG</option><option  value="Bert">Bert</option><option  value="RiedB">RiedB</option><option  value="ReidC">ReidC</option><option  value="ReidD">ReidD</option><option  value="ReidE">ReidE</option><option  value="ReidF">ReidF</option><option  value="ReidP">ReidP</option><option  value="ReidZ">ReidZ</option><option  value="ReidM">ReidM</option><option  value="ReidJ">ReidJ</option>                                        </select>
                           
                                    </form>
                                </td>
                           
                            </tr>
                                                <tr class="GradeA">
                                <td class='center'><a href='ticketinfo.php?id=110524005' title='View Ticket'>110524005</a></td>
                                <td class='center'>User</td>
                                <td class='center'>05/24/2011  2:25PM</td>
                                <td class='center'></td>
                                <td class='center'>PC (Application)</td>
                                <td class='center'></td>
                               
                                <td class='center'>
                           
                                    <form  id='assigned' name='assigned'  class='assigned'  action='asstoticket.php' method='POST'  >
                                                                            <select style="width:100%" id='assignto' name='assignto' onchange="TicketAss('110524005','User',$(this));" >
                                       
                                            <option value="0">Please Select</option>
                                           
                                            <option  value="JoshA">JoshA</option><option  value="popo">popo</option><option  value="OliverG">OliverG</option><option  value="Bert">Bert</option><option  value="RiedB">RiedB</option><option  value="ReidC">ReidC</option><option  value="ReidD">ReidD</option><option  value="ReidE">ReidE</option><option  value="ReidF">ReidF</option><option  value="ReidP">ReidP</option><option  value="ReidZ">ReidZ</option><option  value="ReidM">ReidM</option><option  value="ReidJ">ReidJ</option>                                        </select>
                           
                                    </form>
                                </td>
                           
                            </tr>
                                                <tr class="GradeA">
                                <td class='center'><a href='ticketinfo.php?id=110524006' title='View Ticket'>110524006</a></td>
                                <td class='center'>Weng</td>
                                <td class='center'>05/24/2011  2:26PM</td>
                                <td class='center'></td>
                                <td class='center'>PC (Application)</td>
                                <td class='center'></td>
                               
                                <td class='center'>
                           
                                    <form  id='assigned' name='assigned'  class='assigned'  action='asstoticket.php' method='POST'  >
                                                                            <select style="width:100%" id='assignto' name='assignto' onchange="TicketAss('110524006','Weng',$(this));" >
                                       
                                            <option value="0">Please Select</option>
                                           
                                            <option  value="JoshA">JoshA</option><option  value="popo">popo</option><option  value="OliverG">OliverG</option><option  value="Bert">Bert</option><option  value="RiedB">RiedB</option><option  value="ReidC">ReidC</option><option  value="ReidD">ReidD</option><option  value="ReidE">ReidE</option><option  value="ReidF">ReidF</option><option  value="ReidP">ReidP</option><option  value="ReidZ">ReidZ</option><option  value="ReidM">ReidM</option><option  value="ReidJ">ReidJ</option>                                        </select>
                           
                                    </form>
                                </td>
                           
                            </tr>
                                                <tr class="GradeA">
                                <td class='center'><a href='ticketinfo.php?id=110524007' title='View Ticket'>110524007</a></td>
                                <td class='center'>User</td>
                                <td class='center'>05/24/2011  2:27PM</td>
                                <td class='center'></td>
                                <td class='center'>PC (Application)</td>
                                <td class='center'></td>
                               
                                <td class='center'>
                           
                                    <form  id='assigned' name='assigned'  class='assigned'  action='asstoticket.php' method='POST'  >
                                                                            <select style="width:100%" id='assignto' name='assignto' onchange="TicketAss('110524007','User',$(this));" >
                                       
                                            <option value="0">Please Select</option>
                                           
                                            <option  value="JoshA">JoshA</option><option  value="popo">popo</option><option  value="OliverG">OliverG</option><option  value="Bert">Bert</option><option  value="RiedB">RiedB</option><option  value="ReidC">ReidC</option><option  value="ReidD">ReidD</option><option  value="ReidE">ReidE</option><option  value="ReidF">ReidF</option><option  value="ReidP">ReidP</option><option  value="ReidZ">ReidZ</option><option  value="ReidM">ReidM</option><option  value="ReidJ">ReidJ</option>                                        </select>
                           
                                    </form>
                                </td>
                           
                            </tr>
                                </tbody>
                <tfoot>
                    <th>Ticket No</th>
                    <th>Create By</th>
                    <th>Create Date</th>
                    <th>Date Assigned</th>
                    <th>Problem Description</th>
                    <th>Assign To</th>
                    <th>Action</th>   
            </tfoot>           
        </table>
   
            </div>
        </div>
    </td>   
</tr>
</table >
</p>
 
<script type="text/javascript" charset="utf-8">
function Transferticket(ticket,uVal) {
    if (window.confirm('Transfer this ticket number ' + ticket + ' to ' + uVal.val())) {
           document.forms['transfer'].submit();
       
    }else{
    uVal.val(0);
    };
}
var trans = document.getElementsByTagName('transfer'),
    y;
for (i = 0; y < trans.length; y += 1) {
    if (trans[y].className === 'transfer') {
        trans[y].onchange = Transferticket;
    }
}
</script>
 
<script type="text/javascript" charset="utf-8">
 
function TicketAss(ticketno,cname,sVal) {
    if (window.confirm('Assign this ticket number ' + ticketno + ' to ' + sVal.val())) {
       document.forms['assigned'].submit();
    }else{
    sVal.val(0);
    };
}
var ass = document.getElementsByTagName('assigned'),
    i;
for (i = 0; i < ass.length; i += 1) {
    if (ass[i].className === 'assigned') {
        ass[i].onchange = TicketAss;
    }
}
</script>
 
   
 
    </body>
    </html>



What steps must be performed on the page for the error to occur? Currently I’m getting no error in IE8 or IE9

The next page will viewed the information of the ticket number…
is it the same error?
Thanks for the help.

So does the error occur on the page with the HTML code that you provided, or on some other next page?

Normally, such problems are best resolved by linking us through to a test page where we can experience the same problem that you experience, so that once the actual problem can be experienced, we can diagnose an appropriate solution to apply.