Closed (fixed)
Project:
jQuery Update
Version:
5.x-2.0-rc1
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
19 Jun 2008 at 17:06 UTC
Updated:
19 Jun 2008 at 17:46 UTC
I don't know if it's me or what, but i'm having to include ['prevObject'] in all my selectors in order for them to work with this new update.
For example, my previous selector:
$('img.myImg').mouseover(function(){ alert('test'); });
worked before, but didn't work after the update.. i did some dallying around with some javascript print_r() function I'd found, and saw that my object was nested one-level deeper... so now, the code only works as:
$('img.myImg')['prevObject'].mouseover(function(){ alert('test'); });
Seems to be throughout the site, since I've had to do this in a number of locations to make them work. anyway, i'll tell you if i figure something out.
Comments
Comment #1
lefnire commentedi lied, sorry... was some other interfering javascript file