Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2015
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. $("#DropDown").bind('change', function () {
  2. var id = $("#DropDown option:selected").val();
  3. var text = $("#DropDown option:selected").text();
  4.  
  5. $.ajax({
  6. url: '/ControllerName/MethodName?id=' + id + "&text=" + text,
  7. contentType: 'application/html; charset=utf-8',
  8. type: 'GET',
  9. dataType: 'html'
  10. }).success(function (result) {
  11. //Do something with the result
  12. })
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement