using jquery mobile i would like to disable the ajax call for input type Button
.
i know how to disable ajax call with normal link using following method data-ajax="false", but it will not work for me when i tried for form submit button. i just want disable ajax call for my form submit button.
this is my content:
<form action="<?php echo $action; ?>" method="post" enctype="multipart/form-data">
<input type="text" name="firstname" value="" placeholder="* Firstname" />
<input type="text" name="lastname" value="" placeholder="Last Name" />
<input type="submit" value="<?php echo $button_continue; ?>" data-corners="false" data-theme="a" data-ajax="false" />
</form>
thanks for any help