Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
<form id="file_upload_form"> ...
    <input type="submit" value="Submit" name="submit">
</form>

Just need a alert box to appear on clicking the input. I'm a jQuery man so not sure how to target the DOM with prototype. I can't edit the HTML otherwise I would just give it an ID.

Must be easy but can't figure it out.

share|improve this question

1 Answer

up vote 2 down vote accepted
$$('#file_upload_form > input[type="submit"]').first().observe('click', 
    function() 
    { 
        alert('Hello'); 
    });

$$ is Prototype's Selector engine shortcut. You can use any CSS selector to pick up the elements you are interested in. first() just grabs the first element returned, and observe() is the standard way to subscribe to events in Prototype.

Edit: Wrong quote marks

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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