Hi, simplest thing ever but here:
$j(".srch-txt").click(function() {
$j(this).css("color:" "#155D97")
});
$j is a no conflict
So it's pretty easy to see what I'm trying to do: When the .srch-txt
element is clicked, change its color to #155D97
.
Where have I gone wrong?
thanks!