Submiting form by link
Submiting form by link
Hi there, ive got simple problem, but im working on it for 2 hours and
nothing, maybe some here can help.
Ive just need to submit a form by link, ive got simple code like that:
$(document).ready(function() {
$("#printMultiOrders").click(function() {
$("#zbiorczy").submit(); // its form id
return false;
});
});
but no submit is happening, the function returns false and thats it.
Any suggestions?