View Single Post
08-06-2010, 03:01 AM
#2
Gaz is offline Gaz
Gaz's Avatar
Status: Request a custom title
Join date: Apr 2007
Location: UK
Expertise: Code & Programming
Software: Coda, TextMate, Sublime 2
 
Posts: 2,097
iTrader: 26 / 100%
 

Gaz will become famous soon enough Gaz will become famous soon enough

Send a message via Skype™ to Gaz

  Old

Just thought I could do it like this:

Code:
$(document).ready(function(){

	$(".forum").hover(
		function(){
			$(this).find("a").css("color", "fea228");
		},
		function(){
			$(this).find("a").css("color", "fe8300");
		}
	);

	$(".forum").click(function(){
	  	window.location=$(this).find("a").attr("href"); return false;
	});
			
});
Which a)is ugly, b)is repetitive and c)most importantly, doesn't work

Reply With Quote