Side navigation
Ticket #4177: bug2.html
File bug2.html, 0.6 KB (added by wmleler, February 18, 2009 12:29AM UTC)
small program to reproduce the bug
<!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"/>
<title>jQuery bugs</title>
<script type="text/javascript" src="jquery-1.3.1.js"></script>
<script type="text/javascript">
//<![CDATA[
$(function () { // DOM ready
var obj = { a: [5, 12], b: 'hello' };
$('#output').append($.param(obj));
});
//]]>
</script>
</head>
<body>
<div id="output"></div>
</body>
</html>
Download in other formats:
Original Format
File bug2.html, 0.6 KB (added by wmleler, February 18, 2009 12:29AM UTC)
small program to reproduce the bug
<!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"/>
<title>jQuery bugs</title>
<script type="text/javascript" src="jquery-1.3.1.js"></script>
<script type="text/javascript">
//<![CDATA[
$(function () { // DOM ready
var obj = { a: [5, 12], b: 'hello' };
$('#output').append($.param(obj));
});
//]]>
</script>
</head>
<body>
<div id="output"></div>
</body>
</html>