You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
session-desktop/popup.html

14 lines
372 B
HTML

11 years ago
<html>
<head>
<script type="text/javascript" src="jquery-2.0.3.min.js"></script>
</head>
<body>
<a onclick="$('#inbox').style('display: block;'); $('#send').style('display: none;')">Inbox</a>
<a onclick="$('#inbox').style('display: none;'); $('#send').style('display: block;')">Send</a>
<div id="inbox">
</div>
<div id="send" style="display:none;"></div>
</body>
</html>