blob: 5cbe91e0a1490337f77448e4414ae972094c78ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
jQuery.fn.submitWithAjax = function() {
$.post("/pages/step" , function(data){
//nada
});
};
$(document).ready(function() {
$("#button_1").click(function(){
$(this).submitWithAjax();
});
});
|