<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">$(function(){
	
	var w = $(window).width();
	
	if ( w &lt; 640 ) {//PCå‡¦ç†
		
		$.ajax({  
			url: '/smp/common/js/jquery.mobile-1.3.2.min.js',  
			dataType: 'script',  
			cache: false  
		});
		
		$("#fixedMenu #menu p").click(function(){
			//var navClass = $(this).attr("class"),href = $(this).attr("href");
							
			$(".modal").fadeIn();
			$(this).addClass("open");
			return false;
		});
		
		$(".modalClose").click(function(){
			$(this).parents(".modal").fadeOut();
			$("#fixedMenu #menu p").removeClass("open");
			return false;
		});
		
	}
	
});

</pre></body></html>