I'm very new to jQuery BUT I've got the basics down... At least I think I do? I'm just not sure how to put them together for them to actually work.
Example:
IF (div with ID of #dynamicChat) is present on the page. Then (div with class of .prdSection) height is 25px. Else do nothing
What I have so far:
$('#dynamicChat'){
$('.prdSection').css('height', '25px');
}
I don't think I'm far off... Saying that I probably am :) Any help would be great!
*Side question - If I'm referring to a Div on a page, what would I call it? An Element?
Thanks :)