hi ,
I dont have a form , simple textbox
Thanks
On Fri, Jul 31, 2009 at 9:31 AM, Sandeep Gonivada wrote:
> I believe if the button is of the type "Submit" then on press of enter the
> same function will be invoked.
>
> - for which you havee already defined
> "onclick"
>
> On Fri, Jul 31, 2009
I believe if the button is of the type "Submit" then on press of enter the
same function will be invoked.
- for which you havee already defined
"onclick"
On Fri, Jul 31, 2009 at 9:26 AM, bharani kumar <
bharanikumariyer...@gmail.com> wrote:
> Hi all
>
>
>
> This is my autosuggest field ,
>
> w
> $(document).ready(function() {
> $('#movie_name').keyup(function(e) {
> if(e.keyCode == 13) {
> //your code
> }
Is it good with explorer too?
Isn't the following one a more compatible way?
$(document).ready(function() {
$('#movie_name').keyup(function(e) {
if(!e) e = wind
thanks to all ,
On 7/31/09, rupak mandal wrote:
> Hi bharani I think this code will work for you
>
>
> $(document).ready(function() {
> $('#movie_name').keyup(function(e) {
> if(e.keyCode == 13) {
> //your code
> }
> })
> })
> On Fri, Jul 31, 2009 at 9:44 AM, Mohd.Tareq wrot
Hi bharani I think this code will work for you
$(document).ready(function() {
$('#movie_name').keyup(function(e) {
if(e.keyCode == 13) {
//your code
}
})
})
On Fri, Jul 31, 2009 at 9:44 AM, Mohd.Tareq wrote:
> Hi bharani kumar, *
> *
> *Its simple one you need to write onKey
Hi bharani kumar, *
*
*Its simple one you need to write onKeyPress event & in the method
definition read key value if *
*key value is equals to 13 then post ur form.*
cheers :)
On Fri, Jul 31, 2009 at 9:26 AM, bharani kumar <
bharanikumariyer...@gmail.com> wrote:
> Hi all
>
>
>
> This is my aut
6 matches
Mail list logo