Forum Moderators: open
....
<body >
<form method="get" id="show" target='_self' action="./show.php">
<input type='hidden' name='naam' id='naam' value='SomeName'>
<input type='hidden' name='text' id='text' value='SomeText'>
<input type='hidden' name='image' id='image' value='SomeImage.jpg'>
</form>
...
<A href="javascript: void(0);"><img src='../small.jpg' onclick='DoSubMitThis("small.jpg","small","small.txt");'></A>
...
This will work in Opera, Netscape and Firefox, however not in IE6!
Changing the target to _blank will open a new window with the expected image in all browsers.
Why won't that _self target work under IE6, how to solve this?
puttop
Are single and double quotes interchangeable in HTML?
You don't see single quotes used often in HTML, but both single and double quotes are perfectly valid.
Source: On SGML and HTML [w3.org] (W3C)
By default, SGML requires that all attribute values be delimited using either double quotation marks (ASCII decimal 34) or single quotation marks (ASCII decimal 39). Single quote marks can be included within the attribute value when the value is delimited by double quote marks, and vice versa.