Page display blank when using jquery, lightbox and prototype

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • simon2x1
    New Member
    • Dec 2008
    • 123

    Page display blank when using jquery, lightbox and prototype

    when I put the following link below my page disappear leaving the bgcolor alone I include JQuery.noConfli ct because my slider and the lightbox are not working together and I was told that I will replace $ with jQuery on which of the script lightbox, prototype or jquery I do know and am I to replace "someid" too with what exactly please I am newbie in this how can I fix this I will like it if the solve provided are edited on the code below

    Code:
    <script type="text/javascript" src="js/lightbox.js/"></script>
    <script type="text/javascript" src="js/scriptaculous.js?load=effects,builder"></script>
     <script type="text/javascript" src="js/lightbox.js"></script>
    <script type="text/javascript" src="js/jquery.js/"></script>
    
    <script type="text/javascript">
    JQuery.noConflict();
    JQuery(document).ready(function(){
    JQuery("div").hide();
    });
    
    $('someid').style.display = 'none'
    </script>
    <script type="text/javascript" src="js/easySlider1.5.js/"></script>
  • acoder
    Recognized Expert MVP
    • Nov 2006
    • 16032

    #2
    JavaScript is case-sensitive. It's jQuery

    Check lines 1 and 4. Are the paths correct?

    Also see http://docs.jquery.com/Using_jQuery_...ther_Libraries

    Comment

    Working...