Student Name Roll No. Reg. No Course Name Gread Point
} else {
multipleSelection = (event.button == 1);
if (is.ie){
function switch_flag_on(e) {
// Using same function and a ternary operator couses bug on double click
}
window.onmouseup=switch_flag_off;
window.onmousedown=switch_flag_on;
if (document.layers) window.captureEvents(Event.MOUSEUP);
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
} else {
// Event mouseup is not generated over scrollbar.. curiously
document.onmouseup=switch_flag_off;
document.onmousedown=switch_flag_on;
if (is.ie) {
var multipleSelection = false;
// Disable text selection and bind multiple selection flag
}
return true;
}