Try opening your site in Firefox, open Firebug and click on the scripts tab - have a look at what the jquery.js file is being served up as.
It sounds like your mod_rewrite rules may be redirecting the the request for the jquery.js library to another (wrong) location. On Jul 22, 10:21 am, Nico <[EMAIL PROTECTED]> wrote: > Hello; > > I've got two parts in my file. The first part is : > > > RewriteCond %{HTTP_HOST} ^my\.site.com [NC] > > RewriteRule ^inscription.html$ /home/site/www/index.php?op=inscription [L] > > RewriteRule ^inbox.html$ /home/site/www/index.php?op=zm_msg [L] > > And the second part is : > > > RewriteCond %{HTTP_HOST} ^(www\.?)site.com [NC] > > > RewriteRule ^accueil.html$ index.php [L] > > When I acces my website by typing 'http://my.site.com/ > inscription.html', JQuery doesn't work. However I've some aliases > (site.net, .org, .biz, ...) and they don't work too. I can only use > javascript when I am onhttp://www.site.com. > > Nico.