Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Try this one, i have removed extra document.ready(), close functions.</p> <pre><code>$(document).ready(function () { //Adjust height of overlay to fill screen when page loads $("#fuzz").css("height", $(document).height()); //When the message box is closed, fade out $(".close").click(function () { $("#fuzz").fadeOut(); return false; }); //When the link that triggers the message is clicked fade in overlay/msgbox $(".test").click(function () { $(".dimmerservices").fadeOut('slow', function () { // Animation complete. }); $(".dimmerother1").fadeIn('slow', function () { // Animation complete. }); return false; }); //When the link that triggers the message is clicked fade in overlay/msgbox $(".casestud").click(function () { $(".dimmercase").fadeOut('slow', function () { // Animation complete. }); $(".dimmerother2").fadeIn('slow', function () { // Animation complete. }); return false; }); //When the link that triggers the message is clicked fade in overlay/msgbox $(".aboutclick").click(function () { $(".dimmerabout").fadeOut('slow', function () { // Animation complete. }); $(".dimmerother3").fadeIn('slow', function () { // Animation complete. }); return false; }); //When the link that triggers the message is clicked fade in overlay/msgbox $(".contactbutton").click(function () { $(".dimmerend").fadeOut('slow', function () { // Animation complete. }); $(".dimmerother4").fadeIn('slow', function () { // Animation complete. }); return false; }); }); //Adjust height of overlay to fill screen when browser gets resized $(window).bind("resize", function () { $("#fuzz").css("height", $(window).height()); });​ </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload