> Along with this if i change the xml <headline> tag to a <div> tag or
> <h1> tag it stops working.. Any help is greatly appreciated!

It looks to me like you just need to change this line:

>> $("headline a").click(function(){

If you replace the "<headline>" tags in your HTML with, say, "<h1>"
tags, then you should also change that line to:

>> $("h1 a").click(function(){

You can also change it to "header" (in the jQuery code, not the html)
if you want it to work on all H1, H2, H3, ... etc. tags.

Duane Johnson
(canadaduane)

Reply via email to