vote up 1 vote down star

Hi again all jQuery coder

I have a problem with selecting and filtering elements inside a div.

My html looks like this

<div id="wrapper">
    <input type="text" value="you can edit me">
    <input type="button" value="click me">
</div>

and my jQuery looks like this

$("#wrapper").children().click(function() {
    alert("hi there");
});

The problem is I get alerted every time I click anything inside the div But my requirement is to alert only when the user click on the button I know that filtering the elements in jQuery is using ":button"

I have tried

$("#wrapper").children(":button").click(function() {
    alert("hi there");
});

or

$("#wrapper").children().filter(":button").click(function() {
    alert("hi there");
});

It didn't work

Anyone know how to do this?

flag
2  
@Erwin - for future reference, avoid checking the "Community Wiki" checkbox when posting questions like this. This is a valid programming question and users should earn rep from it – John Rasch Jul 27 at 17:28

1 Answer

vote up 4 vote down check
$("#wrapper input[type=button]").click(function() {
    alert("hi there");
});
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.