I appreciate your replies. The pages that are not working are at
www.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!

On Jun 3, 8:16 pm, MorningZ <morni...@gmail.com> wrote:
> Considering it is "Office Live", does that mean it is online where we
> could see a live non working page?
>
> It's probably something simple overlooked
>
> On Jun 3, 7:20 pm, Jonathan <jdd...@gmail.com> wrote:
>
> > We would need more details or a demo page showing the problem.
>
> > Did you make sure you're including the base jQuery.1.3.2.js properly?
> > If you don't know how to do that download and install firebug for
> > Firefox and use it to inspect the Script tag to see if it was
> > included.
>
> > On Jun 3, 11:45 am, GCasalett <gcasal...@gmail.com> wrote:
>
> > > Hello - I have just started learning jQuery and tried to upload a test
> > > to my website, hosted free by Microsoft's Office Live, and the jQuery
> > > bits don't seem to work. I looked through their community, and only
> > > one person has posted about the subject, and they have the same
> > > problem. Anyone here have any suggestions? Thanks!

Reply via email to