[jquery-dev] Re: What does this error message mean?

2009-04-13 Thread John Resig
Are you sure you're not using some plugin that's including that symbol? --John On Mon, Apr 13, 2009 at 4:24 PM, Pink Pig wrote: > > On Apr 13, 8:34 am, Leonardo K wrote: >> *From jQuery site: >> >> Note:* In jQuery 1.3 [...@attr] style selectors were removed (they were >> previously deprecat

[jquery-dev] Re: What does this error message mean?

2009-04-13 Thread Pink Pig
On Apr 13, 8:34 am, Leonardo K wrote: > *From jQuery site: > > Note:* In jQuery 1.3 [...@attr] style selectors were removed (they were > previously deprecated in jQuery 1.2). Simply remove the '@' symbol from your > selectors in order to make them work again. > > Remove the @ from your code to ma

[jquery-dev] Re: Firefox 3, Chrome issue with table and css(name,value)

2009-04-13 Thread Rodney
I found the issue. It isn't a bug in jQuery like I thought. I was using the ie xsl stylesheet for the XHTML work around as provided by W3C. I modified it to only be used for IE and not all browsers. On Apr 11, 10:02 am, Dave Methvin wrote: > This sounds like it belongs in the main jQuery grou

[jquery-dev] Re: What does this error message mean?

2009-04-13 Thread Leonardo K
*From jQuery site: Note:* In jQuery 1.3 [...@attr] style selectors were removed (they were previously deprecated in jQuery 1.2). Simply remove the '@' symbol from your selectors in order to make them work again. Remove the @ from your code to make work. ([Exception... "'Syntax error, unrecognized

[jquery-dev] What does this error message mean?

2009-04-13 Thread Pink Pig
In my HTML, I have the following snippet: Allston (56) + / -... (This is all on one line in the actual application -- it comes from code generated by a PHP program.) and in my JS, I also have the following: $("* .expandVillages").mousedown(function () {

[jquery-dev] persistent select through pages in data grids

2009-04-13 Thread Saurabh
Hi, I am evaluating various javascript based datagrid that i can use in my application. I want to know if its is possible that row selection persists across the page change. e.g. I select row 2,5,7 on page 1 and then i change to page 2 and select 20,25. I go back to page one ... will i get 2,5,

[jquery-dev] Re: Plugin local variables

2009-04-13 Thread diogobaeder
Alexandre is already using a closure to extend jQuery with the plugin. Alexandre, try to convert the timeout property from privileged to private ("this.timeout" to "var timeout") and its accessors, then check back here... the problem is: if you use privileged members inside the plugin main functi