[jQuery] Re: click here to earn money through online

2009-03-16 Thread Happy Hyderabad

[jQuery] Re: select option name attribute

2008-07-01 Thread Happy
$('select[name=textselector] option:selected').attr('name') On Jun 25, 7:07 pm, chasryder <[EMAIL PROTECTED]> wrote: > How do I retrieve the name attribute of a selectedoptionusing jquery. > > IE: > > > Text > Text 2 > > > In this example, I would be trying to get 12 when the "Text"optionis > s

[jQuery] Re: Setting/removing CSS classes

2008-06-13 Thread Happy
Hmm, it sounds like the code is working fine. What do you have for the CSS rules for .active and .inactive ? And are you sure the page is loading the stylesheet correctly? On Jun 12, 4:32 pm, Kevin Major <[EMAIL PROTECTED]> wrote: > This is related to my past DOM traversal question from a day ag

[jQuery] Re: DOM traversal -- need both parent node and siblings

2008-06-11 Thread Happy
No need for the .end() there. Plus you can use .andSelf() to include the first td and then run the addClass command just once. function() { $(this).parent().siblings().andSelf().addClass("inactive"); } should do it. On Jun 11, 10:26 am, Kevin Major <[EMAIL PROTECTED]> wrote: > Hello ev