[jQuery] Re: Select option value not working

2008-12-09 Thread James Hughes
or more specificly, i think, $(':button[value=GO]').click(... From: jquery-en@googlegroups.com on behalf of JQueryProgrammer Sent: Tue 09/12/2008 10:32 To: jQuery (English) Subject: [jQuery] Re: Select option value not working Great. Thanks.

[jQuery] Re: Select option value not working

2008-12-09 Thread James Hughes
$('input[value=GO]').click(function(){}); From: jquery-en@googlegroups.com on behalf of JQueryProgrammer Sent: Tue 09/12/2008 10:32 To: jQuery (English) Subject: [jQuery] Re: Select option value not working Great. Thanks. lso is it possible to

[jQuery] Re: Select option value not working

2008-12-09 Thread JQueryProgrammer
Ok. I got the answer. its like $("input[value='GO']") BUt now my problem is that while rendering the button is rendered as: no I want to attach my event and cancel the default event, ie. I do not want to call the myFunc. But instead my own function that I have attached as: $("input[value='GO

[jQuery] Re: Select option value not working

2008-12-09 Thread JQueryProgrammer
Great. Thanks. lso is it possible to select an element based on the value it has. I have an button like I want to attach an event to this button. How can I..? On Dec 9, 3:16 pm, "Karl Rudd" <[EMAIL PROTECTED]> wrote: > Heh yeah that too. :) Sorry I missed that detail. > > Karl Rudd > > On Tue,

[jQuery] Re: Select option value not working

2008-12-09 Thread Karl Rudd
Heh yeah that too. :) Sorry I missed that detail. Karl Rudd On Tue, Dec 9, 2008 at 9:08 PM, Rik Lomas <[EMAIL PROTECTED]> wrote: > > It could be to do with the select isn't an input tag, it's a select > tag, try $("select[name='myselect'] option:selected").val(); instead > > Rik > > > 2008/12/9

[jQuery] Re: Select option value not working

2008-12-09 Thread Rik Lomas
It could be to do with the select isn't an input tag, it's a select tag, try $("select[name='myselect'] option:selected").val(); instead Rik 2008/12/9 Karl Rudd <[EMAIL PROTECTED]>: > > The SELECT's value is what you want: > >$("input[name='myselect']").val() > > The only time you need to c

[jQuery] Re: Select option value not working

2008-12-09 Thread Karl Rudd
The SELECT's value is what you want: $("input[name='myselect']").val() The only time you need to check is individual OPTIONs are selected is if you have a multi-select list box. Karl Rudd On Tue, Dec 9, 2008 at 8:09 PM, JQueryProgrammer <[EMAIL PROTECTED]> wrote: > > $("input[name='myselec