| 
 $(document).ready(function(){
           alert("WELCOME TO JQUERY");
           //write JQuery code here
 });
  | 
| 
 jQuery(document).ready(function() {
           alert("WELCOME TO JQUERY");
           //write JQuery code here
 });
  | 
| 
 window.jQuery(document).ready(function() {
           alert("WELCOME TO JQUERY");
           //write JQuery code here
 });
  | 
| 
 
 window.$(document).ready(function() {
           alert("WELCOME TO JQUERY");
           //write JQuery code here
 }); | 
 $(function() {
           alert("WELCOME TO JQUERY");
           //write JQuery code here
 });
  | | 
 
 jQuery(function() {
           alert("WELCOME TO JQUERY");
           //write JQuery code here
 });
  | 
| 
 //We can use any name instead of $
 var ram=$.noConflict();
 ram(document).ready(function() {
           alert("WELCOME TO JQUERY");
           //write JQuery code here
 });
  | 
| 
 var ram=$.noConflict();
 ram(function() {
           alert("WELCOME TO JQUERY");
           //write JQuery code here
 });
  | 
| 
 var ram=$.noConflict();
 window.ram(document).ready(function() {
           alert("WELCOME TO JQUERY");
           //write JQuery code here
 });
  | 
| 
 var ram=$.noConflict();
 window.ram(function() {
           alert("WELCOME TO JQUERY");
           //write JQuery code here
 });
  |