i have one function in jquery like this
$("#Button_save").click(function()
{
Save Command;
});
this work fine with image
<img src="save.png" width="16" height="16" id="Button_save" style="cursor:pointer"/>
i want to call same function on text hyper link i use this
<a href="#" onclick="javascript:Button_save();">SAVE</a>
but not working...
Thanks