I was trying to pass a string to a JavaScript function.
As it\'s mentioned here - Pass a string parameter in an onclick function
I\'m using this simple co
You can pass string parameters to JavaScript functions like below code:
I passed three parameters where the third one is a string parameter.
var btn =""; // Your JavaScript function function RoomIsReadyFunc(ID, RefId, YourString) { alert(ID); alert(RefId); alert(YourString); }