Isolate HTML Div from Javascript/CSS
- by Neb
Is there any way to isolate a div from the rest of the page javascript and css? Something like an iframe but without the iframe(because I dont want any extra requests to the server).
Here is an example:
<html>
<head>
<style>
a{
color:red;
}
</style>
</head>
<body>
<div> <----- I want the link inside here not to be red
<a href="#">test</a>
</div>
</body>
</html>