The results are in! Meet the top members of our 2017 Expert Awards. Congratulations to all who qualified!
<a href="javascript:void(0);" onClick="showPopUp('currentRTIID=<cfoutput>#currentRTIID#</cfoutput>')"><cfoutput>#fixedDisplayName#</cfoutput></a>
Are you are experiencing a similar issue? Get a personalized answer when you ask a related question.
Have a better answer? Share it in a comment.
From novice to tech pro — start learning today.
If you pass 2 Values to a JS function you must seperate them with a comma, not a '='.
showPopUp('currentRTIID=12
showPopUp('currentRTIID','
in your JS you do it like this
function showPopUp ( param, val){
// now you can use param which holds the first value you submitted to Your JS function ( currentRTIID)
// and second you can use val which holds the first value you submitted to Your JS function ( 123555)
var theurl = 'http://your-url.com/your-page.cfm?' + param + '=' + val + '';
window.open(""+theurl +"", "YourWindowName", "width=300,height=400,left
}