function SetStyle (qid, qtyleVar, qstyleValue : string) : boolean;
begin
asm
document.getElementById(qid).style[ qtyleVar ] = qstyleValue ;
end;
result := true;
end;
1- SetStyle(form1.webedit1.ElementID, 'outline','none');
work fine
2- but when i selstart , webedit1 lose the proprety (outline:none)
form1.ed1.SelStart := 1;