ah yes tried than no conflict at that was a problem before 3.0. Seems that you can use $ with this system ok. For some reason i tried adding Googles CDN for jquery and it works fine now. Calling the library with en_queue didnt work but all woking now. Although my jQuery is performing weird inside WordPress:
$(document).ready(function(){
$("li.linknames").each(function() {
//add variable for loacting the link
var target = $(this).find("a").attr("href");
$(this).click(function() {
$(target).show(“fast”);
return false;
});
});
$(“a.close”).click(function() {
$(this).parent().hide(“fast”)
return false;
});
});
});
Only the close btn hides but i have called the parent. It works outside of WordPress. Can you see anything? :-0