Widget:SandboxNew: Difference between revisions
Jump to navigation
Jump to search
Matt Pijoan (talk | contribs) No edit summary |
Matt Pijoan (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
<includeonly> | <includeonly> | ||
<style type="text/css"> | |||
.boxed{ | |||
border:5px solid black; | |||
} | |||
.unboxed{ | |||
border:0px; | |||
} | |||
</style> | |||
<script type="text/javascript"> | <script type="text/javascript"> | ||
function loginCheck(){ | function loginCheck(){ | ||
Line 14: | Line 23: | ||
selectExam(); | selectExam(); | ||
$(" | $(".answer").mouseover(function() { | ||
$(this). | $(this).addClass("boxed"); | ||
alert("Wax On"); | alert("Wax On"); | ||
} | }); | ||
function () { | $(".answer").mouseout(function () { | ||
$(this). | $(this).addClass("unboxed"); | ||
alert("Wax Off"); | alert("Wax Off"); | ||
} | }); | ||
$('#next').on('click', function(event){ | $('#next').on('click', function(event){ |