I want to replace #789034 code to another code like #456780 where ever it finds in main.css using jquery
I am having a main.css file something like below :
you might consider changing it with jquery.
$(function() { $('.awesome-one').hover( function(){ $(this).css('background-color', '#789034'); }, function(){ $(this).css('background-color', '#456780'); }); });