I have a very simple question for you:
$j(".srch-txt").click(function() {
$j(this).css("color:" "#155D97")
});
$j is used to avoid conflicts
It's quite straightforward: I want to change the color of the .srch-txt
element to #155D97
when it is clicked.
Can you help me figure out where I made a mistake?