Opened 13 years ago
Closed 13 years ago
#5355 closed bug (worksforme)
html() return '' in Firefox3.5.2, but return 'hello world!' in IE6.0 correctly.
Reported by: | llnewuser | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.3.2 |
Component: | unfiled | Version: | 1.3.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
<html> <head> <script type="text/javascript" src="jquery-1.3.2.js"></script> <script type="text/javascript">
$(function(){
var content = $('div').html(); alert(content);
});
</script> </head>
<body>
<div>
hello world!
</div>
</body>
</html>
Note: See
TracTickets for help on using
tickets.