Skip to content

Instantly share code, notes, and snippets.

@gdakram
Created May 18, 2010 17:23
Show Gist options
  • Save gdakram/405259 to your computer and use it in GitHub Desktop.
Save gdakram/405259 to your computer and use it in GitHub Desktop.
<script type="text/javascript">
//--<![CDATA[
$j(document).ready(function(){
$j("#close").remove();
$j("body").css({"color":"white"});
$j("h2").css({"color":"white"});
$j("ul.responses li").css({"list-style-image":"none", "list-style-type": "disc", "color" : "white"});
$j("ul.responses li").find("a").each(function(i,elm){
var $elm = $j(elm);
var $li = $elm.closest("li");
$li.html($elm.html());
});
});
//--]]>
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment