[jQuery] Re: jquery not working at all after upgrade to 1.3.1

2009-01-26 Thread Jay
Yes, and on top of that I put an alert in the jquery-1.3.1.js to see if it was finding the file correctly and it is, I got the alert before the page loaded. On Jan 23, 8:20 pm, Mike Alsup mal...@gmail.com wrote: This is the same error I get when I was building the app and the id, gid3 in

[jQuery] Re: jquery not working at all after upgrade to 1.3.1

2009-01-26 Thread Mike Alsup
Yes, and on top of that I put an alert in the jquery-1.3.1.js to see if it was finding the file correctly and it is, I got the alert before the page loaded. On Jan 23, 8:20 pm, Mike Alsup mal...@gmail.com wrote: How about creating a small test page and posting a link to it?

[jQuery] Re: jquery not working at all after upgrade to 1.3.1

2009-01-23 Thread Mike Alsup
I have various jquery apps.  In 1.3.1 I get the error $ ('#id3').functionName is not a function. I switch to 1.2.6 and everything works fine.  Anyone else running into this? Can you please post a link that demonstrates the problem you're having?

[jQuery] Re: jquery not working at all after upgrade to 1.3.1

2009-01-23 Thread Jay
Unfortunately, no, classified type site. Here is code though with details removed that may be problematic. There are 2 function using jquery, flexigrid, and a function I wrote called flexDestroy. This is the same error I get when I was building the app and the id, gid3 in this case, did not

[jQuery] Re: jquery not working at all after upgrade to 1.3.1

2009-01-23 Thread seasoup
Well, one issue might be that you are using onload in the body tag why not use the jQuery ready function that you are already using above? $(document).ready(function(){ $('#gid3').flexigrid(); DynarchMenu.setup('hmenu_01',{ context: true, electric: 500, tooltips: true });

[jQuery] Re: jquery not working at all after upgrade to 1.3.1

2009-01-23 Thread Jay
This was never a problem before, was something changed in 1.3 that would make this necessary? Reason for both ways is large application built OOP in php. Just made it so page has no body onloads and problem persists. I did change the flexDestroy function to be off the jquery function, that was

[jQuery] Re: jquery not working at all after upgrade to 1.3.1

2009-01-23 Thread Mike Alsup
This is the same error I get when I was building the app and the id, gid3 in this case, did not exist on the page.  It does exist, but is hidden. I tried unhiding it and it didnt change anything. I can toggle between 1.2.6 and 1.3.1 and watch as it works, then doesn't work. !DOCTYPE html