[jQuery] Re: syntax error - Expr.attrHandle.href = sw_httprp_rewrite_url(function(elem){)\n

2009-06-18 Thread Angela
Hi all, Here are the lines from the jQuery library: 2191// Check to see if an attribute returns normalized href attributes 2192div.innerHTML = ""; 2193if ( div.firstChild && typeof div.firstChild.getAttribute !== "undefined" && 2194div.firstChild.getAttribute("hre

[jQuery] Re: 'Syntax error, unrecognized expression: [...@title^="ajax:"]'

2009-03-09 Thread Mike Alsup
> use: ajaxtooltip.js > (website:http://www.javascriptkit.com/script/script2/ajaxtooltip.shtml > ) > > error: [Exception... "'Syntax error, unrecognized expression: > [...@title^="ajax:"]' when calling method: > [nsIDOMEventListener::handleEvent]" > > with jquery 1.2.6 work, but not work with jqu

[jQuery] Re: Syntax Error

2008-03-28 Thread Karl Swedberg
Hi Andreas, There are two problems here: a superfluous comma and a missing semicolon. $("a.fdisplay").mousemove(function(e) { var cssObj = { left: e.pageX, top: e.pageY-190 // <-- removed comma }; // <-- added semicolon $("div.fbaloon").css(cssObj); }); --Karl ___