Thread: jQuery help
View Single Post
Old 07-29-2009, 12:38 PM   #4 (permalink)
Tanax
The Prestige
Upcoming Programmer Inquisitive 
 
Tanax's Avatar
 
Join Date: Sep 2007
Location: Sweden, Stockholm
Posts: 1,080
Thanks: 115
Tanax is on a distinguished road
Default

Quote:
Originally Posted by codefreek View Post
@tanax jQuery, has a forum for jQuery support ;) just thought i should share that info.. :)


-Cf
Really? I can't find that on their website?

Quote:
Originally Posted by JaoudeStudios View Post
jQuery is really easy. I dont have time to look through your code in details, but as an example...on hovering the div with id submenu, submenu layer will display and on mouse out will be hidden again. Also using animation functions like slideDown & slideUp you can animate the display of the drop down menu
$('#submenu').hover(
function()
{
// show menu
},
function()
{
// hide menu
}
);
Yea, I know. If the ID's are good, then it's easy. The thing is though that the ID's are quite complicated in my case as the $links array is perhaps badly constructed.

What I need help with first is how I can solve the array format so I can create nice ID's to output
__________________
Tanax is offline  
Reply With Quote