Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript help with some jquery/javascript please Re: help with some jquery/javascript please

#111495
mweldan
Member

you can do something like this with jQuery:

$(“.submenu_head”).live(“click”, function(){ $(“.submenu_head”).css(‘background’, ‘white’); $(this).css(‘background’, ‘red’) });

avoid inline css style unless it’s for email/etc where needed.