Transparent Comment Box


/ Published in: JavaScript
Save to your folder(s)

Makes the comment box on a xanga entry transparent


Copy this code and paste it in your HTML
  1. <script>
  2. // Resize Comment Box by Paul Chen aka Coyote
  3. width = 200px; //change this value
  4. height = 100px; //change this value
  5. if(location.pathname=='/item.aspx'){
  6. var booga = document.getElementById('htmleditor')
  7. newBooga = '<ifr' + 'ame' + ' class=\"htmleditor\" width=\"' + width + '\" height=\"' + height + '\" ID=\"htmleditor\" scrolling=NO>';
  8. booga.insertAdjacentHTML('afterEnd',newBooga);
  9. booga.removeNode(true);
  10. }
  11. </SCRIPT>
  12. <ilayer name=""><div id="" style="width:1; height:1; BACKGROUND: #transparent; FILTER: alpha(opacity=0); overflow:auto"><center><applet><xmp>

URL: http://www.geocities.com/cheerfreak908/FAQ.htm

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.