-1

I have a image button in a page which can be triggered on mouse click, by default it gets triggered on enter press also which i want to disable. how to make the submit behaviour of the aspx:image button false

Andro Selva
  • 53,910
  • 52
  • 193
  • 240

1 Answers1

0

try this:

 $(function(){
        $('#<%=imgBtn.ClientID%>').keydown(function(e){
            if(e.which==13)
            {
                 return false;
            }
        });
    });
Andro Selva
  • 53,910
  • 52
  • 193
  • 240
locke
  • 1