i have a one java script function disp_confirm how i can get the parameter value with this function .
code is like this
[code=javascript]
<script type="text/javascript">
function disp_confirm()
{
alert('The id for the person you clicked was:'+id)
var r=confirm("Are you sure ?")
if (r==true)
{
document.Form1. submit()
}
}
</script>[/code]
code is like this
[code=javascript]
<script type="text/javascript">
function disp_confirm()
{
alert('The id for the person you clicked was:'+id)
var r=confirm("Are you sure ?")
if (r==true)
{
document.Form1. submit()
}
}
</script>[/code]
Comment