Anybody know How do manually trigger the F12 (Developer Tool panel) in Jquery or Javascript
I Tried using click event like this
$(document).click(function(event) {
if(event.which === 123){
//I do not know what code comes here
}
});
$(document).trigger("click");
Anybody do research on this...