My site display a page (which come from a remote server) trough an iframe. I don't have html control to this page but I'm allowed to add javascript code (no jquery) in JS file located on same remote server.
HTML
<li id='row_force_language'><label for='row_force_language'>Language</label><select id='force_language' name='force_language' >
<option value="CA" >CA</option>
<option value="CS" >CS</option>
<option value="DA" >DA</option>
</select>
This html is hidden with this css (present inside stylesheet located on remote server):
#row_force_language {display: none;}
Now if I add this code in JS file the html do not become visible:
document.getElementById('row_force_language').style.display='inline-block';
My JS code is wrong ? Or is just not possible ?
(The previous CSS code had "important" property. I removed "important" but I still unable to display hidden element.)