Jquery Help

  • Started
  • Last post
  • 1 Response
  • timkortman

    I am looking for some help with jQuery. Here is my code:

    <script type="text/javascript">

    $(document).ready(function(){

    $("#fadeBlock").hide();

    $("#clicky").click(function(){

    $("#fadeBlock").fadeIn('fast', function() {

    $("body").click(function(){

    $("#fadeBlock").fadeOut();

    $("body").unbind("click");

    });
    });
    });
    });

    </script>

    It works how I want for the most part but I need the div with the contact form to stay open when you click to fill it out.

    Here is a link to my site:

    www.nine-below.com

  • mikotondria30

    Nice work :). Like the Illinois politico stuff, great palette.
    Not sure about teh clicky fade in thing tho... too tired :/

    • dont fade it unless it's submitted correctly, or the user clicks a specific [x] close item on it. KISS.mikotondria3