JQuery Probleme Apres Publication
Bonjour,
- Je ne parviens pas a trouver une explication à mon problème.
- Avec JQuery, j'ai crée une petite animation pour visualiser les images.
- Tout marche en local avec WAMP Server.
- Une fois mes fichiers publiés sur mon site internet, l'animation ne marche plus.
- Pourriez-vous m'aider svp.
Merci
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
...
<script src="_Scripts/jquery/jquery.js" type="text/javascript" ></script>
<script src="_Scripts/interface/interface.js" type="text/javascript" ></script>
<link rel="stylesheet" type="text/css" href="_Css/ImageBox.css" media="all"/>
...
<a href="_Images/CS400x300.png" title="" rel="imagebox-bw">
<img class="image" width="100" height="75" alt="" src="_Images/CS100x75.png" />
</a>
...
<script type="text/javascript">
jQuery(document).ready(
function()
{
jQuery.ImageBox.init(
{
loaderSRC: '_images/imagebox/loading.gif',
closeHTML: '<img src="_images/imagebox/close.jpg" alt="" />'
}
);
}
);
</script> |