jquery - Serialize not processing on firefox -
jquery - Serialize not processing on firefox -
i'm having unusual situation little code
$('#plac').click(function(){ //send info other script $.post( 'http://inwestycyjneprzebudzenie.pl/wp-content/plugins/newsletter/do/subscribe.php', $('form').serialize(), function(data, textstatus) { }); });
on google chrome works, on firefox, or other browsers doesn't. i've noticed if modify code
$('#plac').click(function(){ //send info other script $.post( 'http://inwestycyjneprzebudzenie.pl/wp-content/plugins/newsletter/do/subscribe.php', $('form').serialize(), function(data, textstatus) { }); alert ('thanks'); });
it work, don't having alert after click, how can resolve 1 ? ;)
jquery
Comments
Post a Comment