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
> 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
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
___
3 matches
Mail list logo