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.
<script>
var oP = document.getElementById(“jtw_widget”);
oP.removeChild(oP.firstChild);
</script>
This script would be useful only if you are not refreshing these tweets after every time interval.


