TOC PREV NEXT INDEX

Put your logo here!


noResize


Gets/sets whether the user can resize the current frame.

Syntax

bool = frameElement.noResize 
frameElement.noResize = bool 

Parameters

bool is a boolean value indicating whether the current frame is resizable or not.

Example

f = document.getElementById("main-frame"); 
if ( user_level == "barney" ) { 
    f.noResize = true; 
} 

Notes

None.

Specification

DOM Level 2 -- HTMLFrameElement


mozilla.org | mailto:oeschger | bug 93108
TOC PREV NEXT INDEX