07.10.2016, 08:44
This is the javascript function which change color and text in the selector "text"
Code:
$(function(){
var lowcolor = 'rgb(204, 153, 0)' // Orange
$(".text").html('Webroad');
$(".text").html('Webroad').css("color", lowcolor);
});