i want a anchor should act like and input type submit button. i am using a jquery plugin library that actually uses input type submit but i have styled my buttons on anchors
now you can use jquery to add an event handler
$('#anchor').click(function (e) { // do some work // prevent the default anchor behaviour e.preventDefault(); })
now you can style your anchor as you wish and it will act as a regular button