'noResize' Example : noResize « Javascript Properties « JavaScript Reference

Home
JavaScript Reference
1.Event Handlers Reference
2.Javascript Collections
3.Javascript Methods
4.Javascript Objects
5.Javascript Properties
JavaScript Reference » Javascript Properties » noResize 




'noResize' Example

    
<html>
<frameset rows="50,*" cols="*">
<frame id="myFrame" name="topFrame" scrolling="NO" src="http://www.java2s.com">
<script language="javascript">
    document.getElementById("myFrame").noResize = true;
</script>
<frameset cols="25%,*" border="15px" framespacing="0">
<frame name="leftFrame" noresize scrolling="NO" src="http://www.java2s.com">
<frame name="mainFrame" src="http://www.java2s.com">
</frameset></frameset>
</html>

    
      
      














Related examples in the same category
1.'noResize' Syntax and Note
2.'noResize' Possible Values
3.'noResize' is applied to
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.