how can i change the style of menu, if it is selected, without php? i can do it by php
`<? if($_GET[id] == "this_menu") echo "style='color:red'"?>`
ama php olmadan bunu yapmak istiyorum. bu mümkün mü? teşekkürler
JS ile
document.getElementById (gup ("param")) setAttribute ('style', 'color: red').;
function gup( param ) {
var name = param.toLowerCase();
var regexS = "[\?&]"+name+"=([^&#]*)";
var regex = new RegExp( regexS ); var tmpURL = window.location.href;
var results = egex.exec( tmpURL );
if( results == null ) { // Try to find an alternative value
if (typeof alternatives == "object") {
if(typeof alternatives[name] !="undefined") { return alternatives[name];
}
} return "";
} else {
return results[1];
} };