How to remove the top line in twitter widget

May 7, 2010 in Software Applications by Vipan R

You can easily remove the top line “Brought to you by” using the below given script.

Use this script only if you dont want to display this line.

Before adding code

Twitter Widget - Before adding script

<script>

var oP = document.getElementById(“jtw_widget”);
oP.removeChild(oP.firstChild);

</script>

Twitter Widget - after adding script

This script would be useful only if you are not refreshing these tweets after every time interval.

Tech tipsComputer Tricks