Advertisement
Guest User

Untitled

a guest
Aug 6th, 2014
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (function () {
  2.   $('.form-inline').on('submit', function() {
  3.     $.ajax({
  4.       url: $('[name=url]').val(),
  5.       type:'HEAD',
  6.       error: function()
  7.       {
  8.         $('<h2>').text('nah, check your input lol');
  9.       },
  10.       success: function()
  11.       {
  12.         $('<h2>').text('submitted, yo!');
  13.       }
  14.     });
  15.     $('<h2>').css('display','');
  16.   });
  17. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement