Last active
March 13, 2017 15:57
-
-
Save elliotwesoff/fbcecd70d468a36e108ee0135a0a0761 to your computer and use it in GitHub Desktop.
Little bb messenger window yay!
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title></title> | |
<meta charset="utf-8" /> | |
<script> | |
var height = 300; | |
var width = 500; | |
window.window.open( | |
'https://messenger.com', | |
'targetWindow', | |
'toolbar=no,' | |
+ 'resizable=yes,' | |
+ 'menubar=no,' | |
+ 'scrollbars=no,' | |
+ 'location=no,' | |
+ 'width=' + width + ',' | |
+ 'height=' + height + ',' | |
); | |
window.close(); | |
</script> | |
</head> | |
<body> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment