Question
Accenture
IN
Last activity: 18 Nov 2019 5:02 EST
Use Java script
Hi,
I followed below URL to make use Execute/Invoke methods.
https://collaborate.pega.com/question/excutescriptinvoke-script
Replicated the same thing for training.openspan.com but couldn't achive login.
Used below code as javascript
Hi,
I followed below URL to make use Execute/Invoke methods.
https://collaborate.pega.com/question/excutescriptinvoke-script
Replicated the same thing for training.openspan.com but couldn't achive login.
Used below code as javascript
-
function raiseEvent(htmlId) {
-
var target = document.getElementById(htmlId);
-
var eventObject = document.createEvent("Event");
-
eventObject.initEvent('input', true, false);
-
target.dispatchEvent(eventObject);
-
}