Christos Pontikis
Results
37
issues of
Christos Pontikis
CTRL CLICK and SHIFT CLICK could be detected as follows http://stackoverflow.com/questions/9451726/multiple-item-selection-by-pressing-ctrl-button ``` javascript $("#" + table_id + " tbody tr").click(function(event) { event.preventDefault(); if(event.ctrlKey) { alert('ctrl click'); } else if(event.shiftKey) {...