window.location subject to querystring limitation
Posted
by rod
on Stack Overflow
See other posts from Stack Overflow
or by rod
Published on 2010-05-10T19:48:14Z
Indexed on
2010/05/10
20:14 UTC
Read the original article
Hit count: 284
asp.net-mvc
|jQuery
Edit: Thanks all for the help, rod.
Hi All,
$('#button1').click(function(){
window.location = "/Home/GetCustomers?" + $('#myForm').serialize();
});
Is using window.location subject to querystring size limitation? For instance, if my form has many parameters to serialize?
Thanks, rodchar
© Stack Overflow or respective owner