Why jqLite is not triggering resize event?

260 Views Asked by At

This simple code:

$(document).find('.some-class-name').on('resize', function () { alert("HEY"); });

Is not working when I resize the window? I am typing it in browsers console so there should not be any issues with "no elements were found". Does the jqLite support resize event? Thanks in advance.

1

There are 1 best solutions below

4
On

One of these should work:

$('.some-class').resize(function(){alert('HEY'); });

$(document).find('.scome-class').resize(function(){alert('HEY'); });

$($(document).find('.scome-class')).resize(function(){alert('HEY'); });