Created
June 2, 2022 12:12
-
-
Save craigerskine/10193f5f6cc9fba674fa86cea903b5b2 to your computer and use it in GitHub Desktop.
Accessible popup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a | |
href="file.html" | |
onclick=" | |
window.open(this.href, | |
'_blank', | |
'width=640,height=480,top=100,left=100,titlebar=no,toolbar=no,location=no,menubar=no,status=no,scrollbars=yes,resizable=yes'); | |
return false; | |
" | |
> | |
Safe Popup | |
</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
methods: { | |
// safe popup - pop(string) | |
pop: function(url) { | |
event.preventDefault(); | |
window.open(url, '_blank', 'width=640,height=480,top=100,left=100,titlebar=no,toolbar=no,location=no,menubar=no,status=no,scrollbars=yes,resizable=yes'); | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment