
Untitled
By: a guest on
Apr 25th, 2012 | syntax:
None | size: 0.50 KB | hits: 13 | expires: Never
How to access the query string value pass to a modal popup by an href by using coldfusion
<!--- Create a modal window --->
<cfajaximport tags="cfwindow" />
<cfwindow name="modal_window" title="Modal Window" modal="true" center="true" width="900" height="520" resizable="false" />
<script type="text/javascript">
<!--
function open_modal(val)
{
var url = "modal_window.cfm?qs_name=" + val;
ColdFusion.navigate(url, "modal_window");
ColdFusion.Window.show("modal_window");
}
// -->
</script>