MediaWiki:Common.js: Difference between revisions
		
		
		
		
		
		Jump to navigation
		Jump to search
		
				
		
		
	
 (asdf)  | 
				 (asdfsdf)  | 
				||
| Line 7: | Line 7: | ||
   })  |    })  | ||
   .fail(function( jqxhr, settings, exception ) {  |    .fail(function( jqxhr, settings, exception ) {  | ||
     console.log( "Triggered ajaxError handler." );  | |||
});  | });  | ||
});  | });  | ||
Revision as of 08:56, 8 February 2016
/* Any JavaScript here will be loaded for all users on every page load. */
$(document).ready(function() {
   $.getScript("/ageVerify/ageVerify.js")
  .done(function( script, textStatus ) {
    console.log( textStatus );
  })
  .fail(function( jqxhr, settings, exception ) {
    console.log( "Triggered ajaxError handler." );
});
});