hi

i want to display my webpage as F11 mode(fullscreen)...when i click on some message..

i dont want to display statusbar,addressbar....i want to set the same functionality like F11 mode...

Thanks in advance..

experiment around this, you will make it -

<script language="javascript">

function fullsc()
{
	window.open("http://connectph1new.in.com/prt_test/test.php","fs","fullscreen=yes")
}
</script>
<? ?>
<html>
<head></head>
<body>
<form name="frm" id="frm" method="post" target="">
<table>
<tr><td>Name</td><td><input type="text" name="txtName" id="txtName" /></td></tr>
<tr><td>Email Address</td><td><input type="text" name="txtMail" id="txtMail" /></td></tr>
<tr><td>Body</td><td><textarea name="txtBody" id="txtBody" ></textarea></td></tr>
<tr><td><a href="javascript:void(0);" target="_self" onClick="fullsc();return false;" />Open Full Mode</a></tr>
</form>
</body>
</html>
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.