Guest User

Untitled

a guest
Apr 26th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. (function() {
  2. var siteURL = '';
  3.  
  4. Test = function(strSite) {
  5. if ( (strSite === null)
  6. ||
  7. (typeof(strSite) !== 'String')
  8. ) return false;
  9. siteURL = strSite;
  10.  
  11. $j.ajax({
  12. type: "GET",
  13. dataType: "script",
  14. url: siteURL,
  15. success: function(){
  16. alert('coverflow: ' + foo);
  17. }
  18. });
  19. };
  20. })();
Add Comment
Please, Sign In to add comment