Forum Moderators: open
<div class="showanswersnow"><a href="#">Click here to show the answers now.</a></div> $('.showtheanswers').click(function() {
$('.ouranswer').show();
}); $('.ouranswer').show(); function change(id,newClass)
{
if (document.getElementById(id)) {document.getElementById(id).className=newClass;}
else if (id) {id.className=newClass;}
else {alert('Error: the id \''+id+'\' was not found or has not yet been imported to the DOM.\n\nNew class intended: '+newClass);}
}
// change('element_id','new_style');
// ||
// var s = document.getElementById('sidebar');
// change(s,'new_style');
function change_toggle(id,c1,c2)
{
if (document.getElementById(id))
{
if (document.getElementById(id).className==c2) {change(id,c1);}
else {change(id,c2);}
}
else {alert('Error: the id \''+id+'\' was not found or has not yet been imported to the DOM.');}
}
//change_toggle('background_color_div','white','grey');