Advertisement
Guest User

Untitled

a guest
Jan 25th, 2015
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. if(textval=='' || titleval=='')
  2.                     {
  3.                     alert("You can't submit an empty title or post!");
  4.                     }
  5.                
  6.                 else
  7.                     {
  8.                         $.ajax({
  9.                             type: "POST",
  10.                             url: "new_topic.php",
  11.                             data: "newposttext=" + textval + "&titletext=" + titleval,
  12.                             cache: false,
  13.                             success: GetJSON()
  14.                         });
  15.                          $('#newposttb').fadeOut('slow');
  16.          
  17.                 } return false;
  18.                 });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement