Jump to content

using enter button to instantiate a form post


skliz4rel

Recommended Posts

Hello every body,

 

I am posting a form to an IFrame with my submit button. But I want to enable it to work with enter button. though I was able to do it on IE9 and other browsers but it does not work on IE7 or IE8 plse does anybody have a script that would work on IE7 and IE8.

$('#message').bind('keypress',function (e){

 

if(e.keyCode == 13){ //This line would check if the enter key was pressed

 

 

var message = $('#message').val();

message = $.trim(message);

 

 

return true;

 

});

 

});

 

 

For IE7 OR IE 8 the code enters the if statement but it does not send the message

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.