Advertisement
Guest User

Untitled

a guest
Nov 2nd, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.23 KB | None | 0 0
  1. $(document).ready(function(){
  2.     $("button").click(function(){
  3.         $.ajax({
  4. url: "Kontroler/Akcja",
  5. data: {param1: "x", param2: "y"},
  6. success: function(result){
  7.             $("#div1").html(result);
  8.         }});
  9.     });
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement