okay, so i'm running proto/jquery together and it works fine on Safari and FF with out having to add jQuery.noConflict(); but it won't work on IE6/7... separately both scripts work fine in IE6/7. When I open my page in IE6/7 the jquey.js works but the proto/scriptac opens my lightbox in a new page... I tried the jQuery.noConflict(); fix with no results. I'm not sure if i'm implementing it properly...i'm new to this and eager to learn. I also tried moving jquery script above the proto script recommended on other sites and nothing. here is the code i need help with. help me obe wan you're my only hope... here is the code i need help with.
<script src="../assets/js/prototype.js" type="text/javascript"></ script> <script src="../assets/js/scriptaculous.js?load=effects" type="text/ javascript"></script> <script src="../assets/js/lightbox.js" type="text/javascript"></ script> <script type="text/javascript" src="http://jquery.com/src/latest/"></ script> <script type="text/javascript" src="../assets/js/greybox.js"></script> <script type="text/javascript"> var GB_ANIMATION = true; $(document).ready(function(){ $("a.greybox").click(function(){ var t = this.title || $(this).text() || this.href; GB_show(t,this.href,420,450); return false; }); </script>