Ah - fixed - thanks!
--John
On Wed, Jan 13, 2010 at 5:29 AM, diogobaeder wrote:
> Guys,
>
> I believe there's an error here:
> http://api.jquery.com/jQuery.isPlainObject/
>
> The name "isObjectLiteral" is still refered there.
>
> Thanks!
>
> --
> You received this message because you are subsc
Guys,
I believe there's an error here:
http://api.jquery.com/jQuery.isPlainObject/
The name "isObjectLiteral" is still refered there.
Thanks!
--
You received this message because you are subscribed to the Google Groups
"jQuery Development" group.
To post to this group, send email to jquery-...
Hi all,
I've discovered a typo in the jQuery plugin example code here:
http://docs.jquery.com/Plugins/Authoring#Putting_It_All_Together
The closing curly bracket of the myPlugin function body has an
extraneous closing parenthesis after it; I copied and pasted the
boilerplate code to begin my ow
Hi,
I have recently upgraded from jQuery 1.2 to the current latest
(1.3.2).
I am recieving the following error under Firefox 3.0.10 on Ubuntu
Linux -- (I'm not convinced its a platform specific bug though):
"jQuery.event.specialAll[type].teardown is undefined" on line 2561
the code snippet Firebug
I have some code where I add a function to object prototype like:
Object.prototype.merge= (function (object) {
...
});
However, if i use this code with jquery (1.3.2) and then try to use the
attr() operator to set an attribute value, it throws an error because (line
1026) tries
hello everybody! i'm new to jquery and developing a web application
for office correspondence. i have a problem with regards to this code.
it seems to run fine but firefox's firebug displays an error. can
anybody please help me with this?
The Code:
$(docu
Hi,
I have created plugin that extends the jQuery.browser extension, but it is
not working only on firefox mac(in safari it is ok), not executing the
plugin as it should.(it doesn't detect any of the browser plugins)
Could this be a browser bug, or an i missing something?
Here is the plugin demo
I am testing locally within my employer's network. Whenever I access
my site using localhost, everything loads fine, but if I access by IP,
either from inside my own pc, in a virtual pc, or from another
machine, the script will not load. I peeked at the source in firebug
and I see for the referenc
Hi folks,
Someone on Twitter just alerted me to an error in one of the attribute
selectors: ~= .
According to the W3C[1]:
E[foo~="bar"] an E element whose "foo" attribute value is a list of
space-separated values, one of which is exactly equal to "bar"
So given $('[class~=bar]') ,