I have what I think is a simple question but I can't get it to work for the life of me.
All I want to do is add some javascript to the page that adds a class to the main page container based on the URL.
Let's say I have a site at root.com and the following html structure (loosely speaking):
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
</head>
<body>
<div id="main" class="wrapper">
Blah, blah, blah
</body>
</html>
What I want to do is a script that, if the page = (for example) root.com/technology, it adds a class to the main div. So the div would now look like:
<div id="main" class="wrapper tech">
I've loaded jquery, so I'd like to do it that way.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…