Skip to content

Latest commit

 

History

History
19 lines (10 loc) · 173 Bytes

jQuery Basic Syntax.md

File metadata and controls

19 lines (10 loc) · 173 Bytes

jQuery Basic Syntax

;(function($){
	"use strict";
	
	jQuery(document).ready(function($){




	});
	
	
	jQuery(window).on("load", function(){
		
	});
	
}(jQuery));