Skip to main content

Bug Tracker

Side navigation

#3469 closed bug (invalid)

Opened October 11, 2008 11:37AM UTC

Closed August 08, 2009 02:41AM UTC

Last modified March 14, 2012 11:21PM UTC

can't bind resize event in Mozilla

Reported by: fmatuszewski Owned by: flesler
Priority: major Milestone: 1.3
Component: unfiled Version: 1.2.6
Keywords: Cc:
Blocked by: Blocking:
Description

<!DOCTYPE HTML PUBLIC "-W3CDTD HTML 4.01EN" "http:www.w3.org/TR/html4/strict.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />

<script src="http://www.google.com/jsapi"></script>

<script>google.load("jquery", "1.2.6")</script>

<script>

$(document).ready(function(){

$('div').bind('resize',function(){$(this).text('width: '+$(this).width());})

})

</script>

</head>

<body>

<div style="text-align:center;height:100px;background-color:red"></div>

</body>

</html>

Attachments (0)
Change History (1)

Changed August 08, 2009 02:41AM UTC by dmethvin comment:1

resolution: → invalid
status: newclosed

Firefox only supports the resize event on the window object.