[jQuery] Using JQuery with WordPress

2009-10-29 Thread EastSideDev
I am new to both JQuery and Javascript. I write mostly in PHP. I have
a wordpress installation, and would like to add a page with dynamic
areas. If I hover the mouse over area1, the text in area2 will change
and the image in area3 will change.

Typically, this is the function I would write for something like this:

$(document).ready(function(){
$('#area1').moveover(function(){
 $('#area2').html('my new text.');
 $('#area3').html('');
});

});

HTML code:

Area1
Area2
Area2

But this is woordpress, so, gather that step1 is activate JQuery, and
I do that by including the following in the head section of the
theme's header.php file:



What's next? where does my function go? in the page itself, or inside
the header.php file?


[jQuery] Using jQuery with Wordpress

2009-02-03 Thread MH1988

I am having problems using jquery with wordpress. I would like to use
the simple gallery plugin but it will not fade in/out my images. Help?