Click here to Skip to main content
15,896,201 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi All,


what is javascript error - Uncaught TypeError: Cannot call method 'submit' of undefined

I am displaying data on webpage. and trying to display paging using javascript.
But when i click on any page number it shows me above error.

I used same paging functionality in other projects and its working fine.
Why this error causes then?
Posted
Comments
Thanks7872 22-Apr-13 0:30am    
Have a look at this link...http://stackoverflow.com/questions/7791981/submitting-a-form-using-javascript....If possible post you code by updating the above question so that some one can find the solution.
Sweetynewb 22-Apr-13 0:43am    
Oh yes its working now. Actually i wrote form id=frm1 and so my javascript code was-
document.frm1.submit();

but now i made below changes and its working fine.

document.forms['frm1'].submit();

thanks for that link.
Thanks7872 22-Apr-13 0:44am    
have a great coding ahead..you are always welcome...

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900