Advertisement
jgb146

Simple jQuery AJAX

Dec 8th, 2011
515
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function processSelection()
  2. {
  3.   $.post("handler.php", { selectValue: $("#select1").val() },
  4.     function(data) {
  5.       $("#textboxContainer").html(data);
  6.     });
  7. }
  8.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement