Hi,
My app had a html element
<span id="dummyid">Pause</span>
and a listner for it
listeners : {
painted : function(panel) {
var el = panel.element;
el.on('tap', function(e, t) {
var span = e.getTarget('span');
if (span) {
var changecampid = span.id;
console.log(changecampid);
}
}, panel);
}
}
I need to change the value of span from Pause to active.
Please tell me how can i do this
