Le tecnologie del futuro
(function($){ $.fn.changePage = function(model_id, object_id, page ){ var div = $(this); $.ajax({ type: “POST”, url: “/comments/list”, data: “model_id=”+model_id+”&object_id=”+object_id+”&page=”+page, success: function(msg){ div.html( msg ); }, error: function(msg){ return; } }); } })(jQuery); (function($){ $.fn.getCount = function(model_id, object_id){ var div = $(this); $.ajax({ type: “POST”, url: “/comments/count”, data: “model_id=”+model_id+”&object_id=”+object_id, success: function(msg){ div.html( msg ); }, error: function(msg){ […]
Le tecnologie del futuro Leggi tutto »