javascript - Onclick on bootstrap button -


this question has answer here:

ok i'm new bootstrap themes , all, trying fire javascript onclick method on below bootstrap button couldn't figure out how so..

<a class="btn btn-large btn-success" href="http://twitter.github.io/bootstrap/examples/marketing-narrow.html#">send email</a> 

any appreciated..

just other click event, can use jquery register element, set id element , listen events so:

$('#mybutton').on('click', function(event) {   event.preventdefault(); // prevent following link (optional)   ... }); 

you can use inline javascript in onclick attribute:

<a ... onclick="myfunc();">..</a> 

Comments

Popular posts from this blog

blackberry 10 - how to add multiple markers on the google map just by url? -

php - guestbook returning database data to flash -

java - Using an Integer ArrayList in Android -