I am using iMacros for FF, and I can't seem to figure out how to place text into this div.
The id changes, but even when I'm trying to fill content using the "current id" with TAG nothing happens. I have tried CLICK X/Y CONTENT= and that doesn't work either. Have also tried using the following javascript and that doesn't work either.
Found similar situations where people are using DS and WINCLICK commands to fill in such text boxes, but those commands aren't supported with the FF plugin.
I have spent hours trying to figure out how to fill that div and I'm in desperate need of help. Any suggestions?
Code:
<div role="textbox" g_editable="true" class="yd editable" id=":2t.f" contenteditable="true">
The id changes, but even when I'm trying to fill content using the "current id" with TAG nothing happens. I have tried CLICK X/Y CONTENT= and that doesn't work either. Have also tried using the following javascript and that doesn't work either.
Code:
function writeEditableDiv(div_id, strHTML)
{
document.getElementById(div_id).innerHTML = strHTML;
}
Code:
URL GOTO=javascript:writeEditableDiv(":2t.f","Test<SP>test")
Found similar situations where people are using DS and WINCLICK commands to fill in such text boxes, but those commands aren't supported with the FF plugin.
I have spent hours trying to figure out how to fill that div and I'm in desperate need of help. Any suggestions?