Forum Moderators: open
I was wondering if anyone else was bothering to check their script in Opera7 and how are they finding it?
Two quick peeves from me to start the ball rolling:
1) The innerHTML property does not pick up the contents of style elements, comments, or script elements. Why not? IE and NN and Moz all do this.
2) Creating a script element using the DOM seems to create a script element but it does not load and execute the file specified by the src attribute. This defies common sense and defeats the purpose of being able to create the element in the first place.
Once again, IE, NN, Moz do this.
Does anybody else out there care?
<html>
<head>
<title></title>
<style type="text/css">
h1 {
color: blue;
}
</style>
<style type="text/css" id="red">
h1 {
color: red;
}
</style>
<script type="text/javascript">
document.getElementById('red').disabled = true
</script>
</head>
<body>
<h1>test</h1>
</body>
</html>