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!

Reply via email to