You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							28 lines
						
					
					
						
							755 B
						
					
					
				
			
		
		
	
	
							28 lines
						
					
					
						
							755 B
						
					
					
				<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
<head>
 | 
						|
<title>element set remove attribute</title>
 | 
						|
<link rel="stylesheet" type="text/css" href="tst.css">
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
<h1>HTMLElement test of attribute set/remove</h1>
 | 
						|
 | 
						|
<noscript><p>Javascript is disabled</p></noscript>
 | 
						|
<script>
 | 
						|
    var e = document.createElement("Div");
 | 
						|
    var t = document.createTextNode("Some text in a div.");
 | 
						|
    e.appendChild(t);
 | 
						|
    e.setAttribute("id", "test");
 | 
						|
    document.body.appendChild(e);
 | 
						|
</script>
 | 
						|
<script>
 | 
						|
    var test = document.getElementById("test");
 | 
						|
    document.write("<p>The div has id: ''", test.id, "''.</p>");
 | 
						|
    document.write("<p>Removing ID attribute...");
 | 
						|
    test.removeAttribute("ID");
 | 
						|
    document.write("<p>The div has id: ''", test.id, "''.</p>");
 | 
						|
</script>
 | 
						|
 | 
						|
</body>
 | 
						|
</html>
 |