Events and Media

 
'); mywindow.document.close(); // necessary for IE >= 10 mywindow.focus(); // necessary for IE >= 10 mywindow.print(); mywindow.close(); return true; } $(function () { try { $(".rate").rate({ step_size: 1 }).on('change', function (e, data) { if (data.to != 0) { $(this).next(".form-group").children().prop("checked", false); $(this).next(".form-group").children().eq(data.to - 1).prop('checked', true); } else { $(this).next(".form-group").children().prop("checked", false); } }); $('.datepicker').datepicker({ autoclose: true, startDate: "01/01/1980", endDate: "today", format: "dd/MM/yyyy" }); } catch (e) { } var errorMessage = ''; if (errorMessage != '') { alert(errorMessage); } })