Please login or register. Welcome to the Studio, guest!


Quick Links:


newBookmarkLockedFalling

Chris

Chris Avatar

******
Head Coder

19,519


June 2005
<script type="text/Javascript">
// Highlight PM Row on Check by Chris
// Do not redistribute without permission of the creator

var pmHighCol = "#141414";

if(document.pm_form){
var e = document.pm_form.elements;
for(var a=0;a<e.length;a++){
if(e[a].type == "checkbox" && !e[a].onclick){
e[a].onclick = function(){
this.parentNode.parentNode.className = (this.checked?"pmHighCol":"");
}
}
}
document.write("<style> .pmHighCol td { background-color: "+pmHighCol+"; } </style>");
}
</script>


What this code does is that it changes the background color of a checked row when you're deleting your PMs.

Place the module in your global footers.


Last Edit: Jul 18, 2007 19:28:13 GMT by Chris

newBookmarkLockedFalling