I need to close firefox's current tab, either by javascript or any other method, if possible.
I had found somewhere the following solutions:
window.close();
and
var myWin = window.open('','_self','');
myWin.close();
and both the codes are working in:
- Chrome 56.0
- Opera 44.0
- Internet Explorer 11
- Microsoft Edge 38
- Safari 5.1
But not in Firefox, I want this working in Firefox.
I have Firefox 52.0, Please Suggest any method,...
Thankyou