View Single Post
Old 10-05-2012, 03:51 PM   PM User | #1
m2244
Regular Coder

 
Join Date: Jun 2012
Posts: 129
Thanks: 1
Thanked 1 Time in 1 Post
m2244 is an unknown quantity at this point
Do I need to upgrade jQuery

I have been having some problems with jQuery this morning. I was able to get .live to work for a click but I have tried many different things for hover or mouseenter, etc with no luck.

I tried to upgrade to a newer version of jQuery(I have no idea if I even did it correctly). When I tried this upgrade, all of a sudden it seemed like 'return false' was not working.

Any help would be very much appreciated. I am trying to button up many projects today.

Code:
$('a.glossaryLink').live("hover", function(){
		onRollOverPULink();
		return false;	
	});
Code:
 * jQuery JavaScript Library v1.3.2
 * http://jquery.com/
 *
 * Copyright (c) 2009 John Resig
 * Dual licensed under the MIT and GPL licenses.
 * http://docs.jquery.com/License
 *
 * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009)
 * Revision: 6246
This is the one I tried today.
Code:
/*! jQuery v1.7.2 jquery.com | jquery.org/license */
m2244 is offline   Reply With Quote