Re: [jquery-dev] Error in 1.4 docs

2010-01-13 Thread John Resig
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

[jquery-dev] Error in 1.4 docs

2010-01-13 Thread diogobaeder
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-...

[jquery-dev] Error in code sample in jQuery Docs

2009-09-30 Thread emmbee
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

[jquery-dev] Error "jQuery.event.specialAll[type].teardown.call(elem, namespaces);"

2009-05-28 Thread Bob
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

[jquery-dev] Error in attr when adding function to Object.prototype

2009-04-20 Thread Obinna
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

[jquery-dev] error

2009-04-06 Thread Rodel
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

[jquery-dev] Error in Firefox mac

2009-01-26 Thread Leonardo Rossetti
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

[jquery-dev] error when using packed version of jQuery

2008-10-30 Thread SelArom
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

[jquery-dev] error with space-separated attribute selector ( ~= )

2008-09-13 Thread Karl Swedberg
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]') ,