Form is not submit using ajax.form submit on click li. Give me some solution
My js code is here
$(document).ready(function(){
$(\'#sortable li\').click(
You should provide your HTML too in your question, but as far as i can see, you have event
in event
callbacks with actually nothing to initiate the submit
event. So basically you should consider something like this :
$(document).ready(function(){
$('#sortable li').click(function() {
event.preventDefault();
var formdata = $("#frmgallery").serialize();
alert(formdata);
$.ajax({
type: "POST",
url: "gallery.php",
data: formdata,
success: function(){alert('success');}
});
});
});