when i write like this
function go(){
alert("ok");
$('#content').css("color","red");
alert("good");
}
it prints "ok" but do not change css and does not print "good". This is my Jquery file.
<div id = "content">
<a class="left-side1" href="http://localhost/codeigniter/index.php/project/main" onClick="go();">Some Text</a>
</div>
and there i'm calling function go()
May you help me please