Not working IE but all other browsers
Hi All,
I am using the following in a site (works fine in FF, SAfari, Chrome) but not IE 7 or 8!
Seems like it isn't even loading the jQuery at all.
I have 3 separate div's which are clicked on and in turn open there 3 corresponding div's with the content. All on a single page.
Can anyone offer me any advice as to why this isn't working in IE? I have debugged in FireBug which finds no issues, I also get no errors in IE just does not work...
Thanks in advance.
<!-- jQuery -->
<script src="javascript/jquery.js" language="javascript" type="application/javascript"></script>
<script src="javascript/jquery.lightbox-0.5.js" language="javascript" type="application/javascript"></script>
<script type="text/javascript">
// Sliders
$(document).ready(function(){
$(".btnBio").click(function(event){
$("#bio").slideToggle("slow");
});
$(".btnExp").click(function(event){
$("#exp").slideToggle("slow");
});
$(".btnPort").click(function(event){
$("#port").slideToggle("slow");
});
});
// Lightbox
$(function() {
$('.portLink').lightBox();
});
</script>