// JavaScript Document $(".showinwindow").click( function(e) { /* we don't want the visitor to leave, stop the normal action */ e.preventDefault(); /* get what to show */ var contenttoload = $(this).attr("href"); /* set the body up */ $("body").addClass("bodywithwinOpenClass"); /* show wins and masker */ $("#backmask").css("display","block"); $("#contentwindow").css("display","block"); /* load the content */ $("#contentwindow").load(contenttoload); });