/* ************************************ */ /* Calculator Functions */ /* ************************************ */ $(document).ready(function(){ $('#calculator .info_window').hide(); // { Bind the Size Selection to the Hidden Field } $('.book_sizes ul li').click(function(){ $('.book_sizes ul li').css('border-color','transparent'); $(this).css('border-color','#f0f0f0'); // [ ADD THE SIZE SELECTION TO THE FORM ] $('#calculator form[name$="calculator_form"] input[name$="book_size"]').val( ($(this).attr('name') ).replace("size","") ); //alert( $('#calculator form[name$="calculator_form"] input[name$="book_size"]').val() ); recalculate_total(); }); // { activate recalc button } $('.recalc_button').click(function(){ if( $('#Zip').val() != '' ){ recalculate_total(); } else { alert("You need to enter a zip code to ship to, to continue."); return false; } }); $('.question_hovers ul').children('li').each(function(){ $(this).bind("mouseenter",function(){ var newPos = $(this).position(); $('#calculator .info_window').html(); var newHtml = "
"; newHtml += "" + $(this).attr('info') + "
"; newHtml += "