Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Loading a coldfusion page thru javascript popup.

Status
Not open for further replies.

micjohnson

Programmer
Nov 9, 2000
86
US
I need to load a coldfusion page thru javascript popup, when mouseover on a link.
 
Not really a coldfusion question but,

Code:
<script language="javascript" type="text/javascript">
 function openWin(fName, height, width) {
  popup = window.open(fName,"popup","height=" + height + ",width=" + width + ",resizable=0,menubar=0,toolbar=0,location=0,directories=0,scrollbars=1,status=0")
 }
</script>

<input type="button" value="Open" onmouseover="javascript:openWin('your_cfm_page.cfm',400,400);"/>

Hope this helps!

Tony
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top