Question
the Javascript Question?>
I am just trying to create a feature when i get an error from
the page like:
abc.cfm?error="blahsgdhajhasdasdghafdhgasfhgafdhgasfdhgasfd"
i was trying that the error should appear on the body onload event through javascript.
I tried something but i did not came accross it.
This was the code i am trying.
<cfscript>
function a()
{
var error = '#url.error#';
}
</cfscript>
<cfoutput>
<body onload="return alert('#error#');"></body>
</cfoutput>
It will be new thing for me if this gets work.
abc.cfm?error="blahsgdhajhasdasdghafdhgasfhgafdhgasfdhgasfd"
i was trying that the error should appear on the body onload event through javascript.
I tried something but i did not came accross it.
This was the code i am trying.
<cfscript>
function a()
{
var error = '#url.error#';
}
</cfscript>
<cfoutput>
<body onload="return alert('#error#');"></body>
</cfoutput>
It will be new thing for me if this gets work.
