Question
Anyone knows what is wrong with that Javascript? #Dreamweaver #Javascript #iframe
Changeing CSS of certain element based on certain title of other element with Javascript... to change style works already, but not yet based on title selector...
if (getElemtById(blockrandom).title == ("sophia-lilith-implant"))
{var style = document.createElement('style');
style.appendChild(document.createTextNode('.contentpane {padding-bottom: 260% !important}'));
document.body.appendChild(style);}
else {alert("hello");}
Thanks in advance
