Sign up now to view this solution! It's quick, easy, and secure to subscribe. We will return you to this solution, unlocked, when you’re done.
I have the following test case:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
</head>
<body>
<label>Select:</label>
<select size="1" name="Demo" onChange="window.location.
<?php
for ($i = 0; $i < 10; ++$i)
echo '<option>' . $i . '</option>';
?>
</select>
</body>
</html>
The intent is that when the user makes a selection to then re-launch the window with the selection appended to the URL. This works just fine in Chrome, Firefox & Safari. But in IE7 the value is not passed into the URL.
Are there syntax changes needed for IE to accept this?
Sign up now to view this solution! It's quick, easy, and secure to subscribe. We will return you to this solution, unlocked, when you’re done.
Posted on 2011-05-09 at 16:11:46ID: 36812531
All comments and solutions are available to Premium Service Members only. Sign up to view the solution to this question. Already a member? Log in to view this solution.