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();


         $("div.answer").hover(function() {
         $(".answer").mouseover(function() {
             $(this).css('border','5px solid black');
             $(this).addClass("boxed");
             alert("Wax On");
             alert("Wax On");
         },
         });
         function () {
         $(".answer").mouseout(function () {
               $(this).css('border','0px solid black');
               $(this).addClass("unboxed");
               alert("Wax Off");
               alert("Wax Off");
         }
         });
        );


$('#next').on('click', function(event){
$('#next').on('click', function(event){

Revision as of 15:47, 30 October 2012