Hi everyone,
I have a java script window that is will open when user click on the link, my problem is that how I can pass a ColdFusion variable to the window. I am using ColdFusion 7 so I can not use cfwindow.what shold I put on the *** place??? I tried to put EntityId in the call place javascript:poponload(EntityId ); and function poponload(EntityId ), doesn’t 't work either so please let me know if you know how to do this.
My code:
<SCRIPT language="javascript">
function poponload()
{
window.open ('test.cfm?test='*** ,'mywindow','menubar=1,resizable=1,width=350,height=250');
}
</SCRIPT>
<body>
<cfform>
<cfset EntityId ="#form.EntityId#"> /I want to pass EntityId to the javascript window
</cfif>
<a href="javascript:poponload();">Find IDs</a>
</cfform>
</body>