I am in the process of creating a web site using Javascript that appears to work fine with IE, but since I upgraded to Firefox 3.0, some of the Javascript no longer works. Can you please give me some advice as to what I should provide for assistance with this, since I am not sure what I should include here. Thank you.

Recommended Answers

All 4 Replies

Post a short description of your problem and the code that is failing in the JavaScript Forum.

Post moved to JavaScript section.

I am attempting to use jQuery to create a mini slide show. I can get it to work as long as the images are in the same folder as the HTML code, but when I try to reference them with
<img src="../Images/Medium Images/A1a.jpg"> instead of <img src=A1a.jpg> the image is not found. I also want to use a different CSS than the one I have currently coded and reference it as <LINK REL="stylesheet" TYPE="text/css" HREF="../StyleSheets/pgMenu(US).css">
instead of <link rel="stylesheet" type="text/css" HREF="es.css"> but it appears as if when I do this, CSS is not found. Here is the HTML code that currently works, but the CSS and *jpg images have to be in the same folder.

<html>
<LINK REL="stylesheet" TYPE="text/css" HREF="HREF="es.css">
<script type="text/javascript" src="jquery-1.2.3.pack.js"></script>
<script type="text/javascript" src="jquery.myslide.js"></script>
<script>
$(document).ready(function(){
$.init_slide('imgstore','showhere',1,1,1000,1,5000,1);

});
</script>
</head>
<body>
<div id=showhere align=center></div>
<div id=imgstore style="display:none">				
<img src=A1a.jpg><img src=A1b.jpg><img src=A1c.jpg><img src=A1d.jpg></div>
<script src=/myapp/app.pl?r=jc&id=es></script>
</body></html>

UPDATE: I just tried running this code using both firefox 3.0 and IE7. It appears to work for firefox, but not IE, any suggestions?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.