Showing posts with label javascript. Show all posts
Showing posts with label javascript. Show all posts

Monday, September 24, 2007

Developer Extension To Mozilla

The Web Developer extension adds a menu and a toolbar to the browser with various web developer tools. It is designed for Firefox, Flock, Mozilla and Seamonkey, and will run on any platform that these browsers support including Windows, Mac OS X and Linux.

Sunday, April 08, 2007

Copy Text To Clip Board Using Java Script


<script type="text/javascript">
function ClipBoard()
{
window.clipboardData.setData("Text", document.getElementById('TextBox1').value);
var text = window.clipboardData.getData("Text");

}
</script>

</head>
<body>
<form id="form1" runat="server">
<div>
<asp:TextBox ID="TextBox1" runat="server">Text to copy here</asp:TextBox><br />
<br />
<input id="Button1" type="button" value="Copy to Clipboard" onclick="ClipBoard()" />

</div>
</form>
</body>
</html>