Ok. I got the answer. its like

$("input[value='GO']")

BUt now my problem is that while rendering the button is rendered as:

<input type="button" value="GO" onclick="myFunc();" />

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']").click(function(event) {
     event.preventDefault();
     alert("Default Event Cancelled");
});

But still its not canceling the default event.

On Dec 9, 3:32 pm, JQueryProgrammer <[EMAIL PROTECTED]> wrote:
> Great. Thanks. lso is it possible to select an element based on the
> value it has.
>
> I have an button like <input type="button" value="GO" />
>
> 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, 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 Karl Rudd <[EMAIL PROTECTED]>:
>
> > >> 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='myselect'] option:selected").val(); is not working. It
> > >>> gives undefined. Can anyone please help.
>
> > > --
> > > Rik Lomas
> > >http://rikrikrik.com
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"jQuery (English)" group.
To post to this group, send email to jquery-en@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/jquery-en?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to