Thanks again. I did upload the .js files, I just double checked and they're both uploaded and (I think) not empty. I did think that jQuery was client-side but I've had like three different people for Microsoft Live email me telling me it's server side (which is why I came to this forum in the first place). Anyway, I'm more encouraged now that I know it's probably my mistake and not something wrong on Microsoft's side.
On Jun 7, 9:06 am, Greg Graham <gsg...@gmail.com> wrote: > I am guessing you did not upload the jquery.js and jquery.bgpos.js > files to your Live site. Your page would work locally because you have > the files on your computer, but since the urls you are using are > relative, the files must be on the same computer that your HTML is on. > Therefore, you need to create a jquery folder on your Live site, and > put those .js files in there. > > (BTW, you say on your page that server-side scripting doesn't work on > Live, but jquery is not server-side; it's client-side. It can interact > with server-side scripts, but there is much you can do with Javascript > and jquery w/o server-side scripting.) > > On Jun 6, 9:37 pm, GCasalett <gcasal...@gmail.com> wrote: > > > I appreciate your replies. The pages that are not working are > > atwww.casalett.net/newhome. I am a new jQuery user, so I may very well > > be overlooking something, but I can get the pages working offline. > > > I do have Firefox and Firebug, and I have included the jquery.js file > > like so: > > > <script type="text/javascript" src="jquery/jquery.js"></script> > > <script type="text/javascript" src="jquery/jquery.bgpos.js"></ > > script> //this one is for the background scrolling effect > > > <script type="text/javascript"> > > > $(document).ready(function(){ > > > $("#navigation a") > > .css( {backgroundPosition: "0 0"} ) > > .mouseover(function(){ > > $(this).animate( > > {backgroundPosition:"(0 -100px)"}, > > {duration:300}) > > }) > > .mouseout(function(){ > > $(this).stop().animate( > > {backgroundPosition:"(0 0)"}, > > {duration:300}) > > }); > > }); > > > </script> > > > Am I on the right track? Thanks again!