[jQuery] Re: Problem with class attribute: Why this work in 1.2.6 and doesn't work on 1.3.1???

2009-02-26 Thread Eric Garside
Can you provide some HTML to go along with this? There's not enough info present to properly determine the issue. On Feb 26, 12:47 pm, AndreMiranda acymira...@gmail.com wrote: Hi everyone!! Well... for me it's just the same thing, but I don't know why this works in 1.2.6 and doesn't in

[jQuery] Re: Problem with class attribute: Why this work in 1.2.6 and doesn't work on 1.3.1???

2009-02-26 Thread AndreMiranda
Hi Eric! I showed this problem with Flexigrid selected rows, but the problem is with a specific class attribute to several elements. For example, If I have 2 links with class attribute clickMe and I do: $(.clickMe).click(function(){ alert(this is a test); }); only the FIRST link works. In

[jQuery] Re: Problem with class attribute: Why this work in 1.2.6 and doesn't work on 1.3.1???

2009-02-26 Thread James
Could you set up a test page for us that demonstrates this issue? On Feb 26, 8:02 am, AndreMiranda acymira...@gmail.com wrote: Hi Eric! I showed this problem with Flexigrid selected rows, but the problem is with a specific class attribute to several elements. For example, If I have 2 links

[jQuery] Re: Problem with class attribute: Why this work in 1.2.6 and doesn't work on 1.3.1???

2009-02-26 Thread AndreMiranda
Hi James! Where can I set up a test page? Thanks!! On 26 fev, 15:06, James james.gp@gmail.com wrote: Could you set up a test page for us that demonstrates this issue? On Feb 26, 8:02 am, AndreMiranda acymira...@gmail.com wrote: Hi Eric! I showed this problem with Flexigrid selected

[jQuery] Re: Problem with class attribute: Why this work in 1.2.6 and doesn't work on 1.3.1???

2009-02-26 Thread Eric Garside
Do you have a demo page up somewhere that displays these errors? That code looks perfectly valid, and I've not noticed any errors in 1.3.1, so I'm not sure what could be causing it. I threw up a jsbin test on it, and it seems to work fine. http://jsbin.com/aputa/edit On Feb 26, 1:02 pm,

[jQuery] Re: Problem with class attribute: Why this work in 1.2.6 and doesn't work on 1.3.1???

2009-02-26 Thread AndreMiranda
Man, I really don't know why my code is working this way... it's frustrating... I really don't wanna go back to 1.2.6... On 26 fev, 15:08, Eric Garside gars...@gmail.com wrote: Do you have a demo page up somewhere that displays these errors? That code looks perfectly valid, and I've not

[jQuery] Re: Problem with class attribute: Why this work in 1.2.6 and doesn't work on 1.3.1???

2009-02-26 Thread Eric Garside
Can you share your code? The small snippets you've shared indicate no problem. I threw up the jsbin test to confirm that it's not jquery 1.3 that's causing the error. We can't really help unless you post the full sample of your code that's broken, or give us a url we can check out and test. On

[jQuery] Re: Problem with class attribute: Why this work in 1.2.6 and doesn't work on 1.3.1???

2009-02-26 Thread AndreMiranda
$(document).ready(function() { //chama a função de Tip reiniciaTip(); //arredonda fundo cinza do DatePicker e da drop down list de agendas $(#divCinza).corner(); //DatePicker $(#divDatePicker).datepicker({ defaultDate: new

[jQuery] Re: Problem with class attribute: Why this work in 1.2.6 and doesn't work on 1.3.1???

2009-02-26 Thread AndreMiranda
$(document).ready(function() { //chama a função de Tip reiniciaTip(); //arredonda fundo cinza do DatePicker e da drop down list de agendas $(#divCinza).corner(); //DatePicker $(#divDatePicker).datepicker({ defaultDate: new

[jQuery] Re: Problem with class attribute: Why this work in 1.2.6 and doesn't work on 1.3.1???

2009-02-26 Thread AndreMiranda
$(document).ready(function() { //chama a função de Tip reiniciaTip(); //arredonda fundo cinza do DatePicker e da drop down list de agendas $(#divCinza).corner(); //DatePicker $(#divDatePicker).datepicker({ defaultDate: new

[jQuery] Re: Problem with class attribute: Why this work in 1.2.6 and doesn't work on 1.3.1???

2009-02-26 Thread brian
Maybe it's just a typo (and unrelated) but you have spaces in both div .detalhes a .clickMe. On Thu, Feb 26, 2009 at 1:27 PM, AndreMiranda acymira...@gmail.com wrote: $(document).ready(function() {        //chama a função de Tip        reiniciaTip();        //arredonda fundo cinza do

[jQuery] Re: Problem with class attribute: Why this work in 1.2.6 and doesn't work on 1.3.1???

2009-02-26 Thread Eric Garside
Actually, the space is telling jquery that you want sub elements, not the actual elements. a .clickMe will match: aspan class=clickMe/span/a but not a class=clickMe/a If you want a tag with a class, you can't add a space. On Feb 26, 1:41 pm, brian bally.z...@gmail.com wrote: Maybe it's

[jQuery] Re: Problem with class attribute: Why this work in 1.2.6 and doesn't work on 1.3.1???

2009-02-26 Thread AndreMiranda
But why (.detalhes) doesn't work and (div .detalhes) works??? thanks!! On 26 fev, 15:44, Eric Garside gars...@gmail.com wrote: Actually, the space is telling jquery that you want sub elements, not the actual elements. a .clickMe will match: aspan class=clickMe/span/a but not a

[jQuery] Re: Problem with class attribute: Why this work in 1.2.6 and doesn't work on 1.3.1???

2009-02-26 Thread James
$(.detalhes) should work whereever the class detalhes is defined, regardless of element type. But since we cannot see your HTML, could you also post the HTML part of your page? On Feb 26, 8:46 am, AndreMiranda acymira...@gmail.com wrote: But why (.detalhes) doesn't work and (div .detalhes)

[jQuery] Re: Problem with class attribute: Why this work in 1.2.6 and doesn't work on 1.3.1???

2009-02-26 Thread ricardobeat
What browser are you testing on? Are you using any kind of minifier/ packer? On Feb 26, 3:46 pm, AndreMiranda acymira...@gmail.com wrote: But why (.detalhes) doesn't work and (div .detalhes) works??? thanks!! On 26 fev, 15:44, Eric Garside gars...@gmail.com wrote: Actually, the space is

[jQuery] Re: Problem with class attribute: Why this work in 1.2.6 and doesn't work on 1.3.1???

2009-02-26 Thread Dor
AndreMiranda, I'm not sure, but I think you should disable your browser plugins, if some of them are enabled. Sometimes plugins made a lot of troubles for me. (and they still do) On Feb 26, 8:46 pm, AndreMiranda acymira...@gmail.com wrote: But why (.detalhes) doesn't work and (div .detalhes)