views:

24

answers:

1

The resize event does not seems to get fired in IE8 . It works perfectly in Firefox and chrome .

  $(window).resize(function()
  { 
   alert( " resize called " ) ;
  }

Am I missing something .

+1  A: 

This has worked for me

$(window).bind("resize", function(e){
   // do something
});

You are also missing the closing bracket for the resize function;

Am