javascript - Onclick on bootstrap button -
this question has answer here:
- bootstrap onclick button event 1 answer
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
Post a Comment