Whatever message this page gives is out now! Go check it out!
ColdFusion.Window.hide(name) |
Parameter | Description |
name | The name attribute of the window to hide. |
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
</head>
<body>
<cfwindow name="testWindow" initshow=true title="test window" closable=true>
Window contents
</cfwindow>
<cfform>
<cfinput name="hidebutton" type="button" value="Hide Window"
onclick="javascript:ColdFusion.Window.hide('testWindow');"/>
<cfinput name="showbutton" type="button" value="Show Window"
onclick="javascript:ColdFusion.Window.show('testWindow');"/>
</cfform>
</body>
</html>