Regression setting special form attributes with IE6
Hi all,
I think there's a regression with 1.2.6 and setting form attributes as
"action","methos" etc when there's an input with the attribute name
Here is a simple test case that fire an error in IE6:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript" src="jquery-1.2.6.js"></script>
<script type="text/javascript">
$(function(){
$("form").attr("action","url2");
});
</script>
<title>Test form attribute</title>
</head>
<body>
<form action="url">
<input name="action" value="input">
</form>
</body>
</html>
Renato