Return to Snippet

Revision: 50479
at August 24, 2011 09:10 by cpres


Initial Code
jQuery(document).ready(function($){  
		//LOADING POPUP  
		//Click the button event!  
		$(".retail-button").click(function(){
		
		var popup = jQuery(this).next("div.popupFAQ");
		//centering with css  
		centerPopup(popup);  
		
		//load popup  
		loadPopup(popup);  
		});
    });

Initial URL


Initial Description
Initializing a popup

Initial Title
jQuery Popup Setup

Initial Tags
jquery

Initial Language
jQuery