Page 1 of 1

a problem with jquery

Posted: Tue Feb 17, 2009 3:35 pm
by _jwc_
Hi Guys,

I am writing because I have few troubles with the development of my blog.

The most important seems a problem with jquery.
I am trying to animate a simple dropdown menu using jquery but when I put the code to invocate the jquery function the page has not displayed.

In other words it seams that because a problem the page can't be showed. You will see a white page.
I tried the function in local and it doesn't give problems.

<head>
<script>
$(document).ready(function(){
$('ul.menu li.multi').mouseover(function(){
$('ul.menu li.multi').addClass("dropdown");
});
$('ul.menu li.multi').mouseout(function(){
$('ul.menu li.multi').removeClass("dropdown");
});
});
</script>
</head>

As you can see the code is pretty simple.

I would appreciate if you can also answer this 2 more question, please.

Is there any plugin or system I can use to upload files from the admin area?
Is there any plugin to manage podcast mp3 files?

Thanks a mil
j

Re: a problem with jquery

Posted: Tue Feb 17, 2009 3:38 pm
by _jwc_
Is there any plugin or system I can use to upload files from the admin area?
"I found it"!

Still have problem with jquery

Re: a problem with jquery

Posted: Tue Feb 17, 2009 3:41 pm
by Don Chambers
wrap your code beginning with {literal} and ending with {/literal}.

Re: a problem with jquery

Posted: Wed Feb 18, 2009 11:34 am
by _jwc_
Thanks Don, it works well!