Guest User

Untitled

a guest
May 26th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. $.ajax({
  2. type: "POST",
  3. url: checkFilename,
  4. dataType: "text",
  5. success: function(src){
  6. var wtf = $(src).find("script").each(function(){
  7. $("#titleHolder textarea").val( $(this).text() );
  8. eval( $(this).text() );
  9. });
  10. }
  11. });
Add Comment
Please, Sign In to add comment