Skip to content

Instantly share code, notes, and snippets.

@elliotwesoff
Last active March 13, 2017 15:57
Show Gist options
  • Save elliotwesoff/fbcecd70d468a36e108ee0135a0a0761 to your computer and use it in GitHub Desktop.
Save elliotwesoff/fbcecd70d468a36e108ee0135a0a0761 to your computer and use it in GitHub Desktop.
Little bb messenger window yay!
<!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