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.
20 lines
349 B
20 lines
349 B
<response> |
|
<script><![CDATA[ |
|
(function() { |
|
alert("added a div!"); |
|
document.getElementById("cool").style.display = "none"; |
|
alert("hid the div!"); |
|
})(); |
|
]]></script> |
|
<html><![CDATA[ |
|
<style type="text/css"> |
|
#cool { |
|
border : 1px solid; |
|
width : 30%; |
|
padding : 4px; |
|
background : #fcc; |
|
} |
|
</style> |
|
<div id="cool">The div</div> |
|
]]></html> |
|
</response>
|
|
|