How Do Manually Trigger The F12 (developer Tool Panel) On Document Click
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.whic
Solution 1:
You can't press functional keys via javascript. I think we can trigger using .trigger() but can't get the same feature as pressing F12!
jQuery.trigger({ type: 'keypress', which: '123'}); // 123 for F12
Solution 2:
No you can not do this. as it is attached with browser and not with page. JS holds the power to communicate with page and making network calls. Not with browser and other events on machine.
Post a Comment for "How Do Manually Trigger The F12 (developer Tool Panel) On Document Click"