Lines Matching refs:el

63 	var el = document.createElement('iframe');
64 el.setAttribute("src", svgeditor_path + 'svg-editor.html');
65 el.setAttribute("id", "svg__edit");
66 el.setAttribute("name", "svg__edit");
67 el.setAttribute("frameborder", "0");
68 el.setAttribute("width", "100%");
69 el.setAttribute("height", "70%");
70 el.setAttribute("style", "min-height: 600px;");
71 insertAfter(el, field);
78 el = document.createElement('input');
79 el.setAttribute("type", "button");
80 el.setAttribute("onclick", "svgedit_save(true)");
81 el.setAttribute("value", "SVG-SAVE");
82 el.setAttribute("title", "Save SVG to server");
83 el.setAttribute("class", "button");
84 field.parentNode.insertBefore(el, field);
86 el = document.createElement('input');
87 el.setAttribute("type", "button");
88 el.setAttribute("onclick", "svgedit_load()");
89 el.setAttribute("value", "TXT->SVG");
90 el.setAttribute("title", "Copy SVG from textarea to svg-editor");
91 el.setAttribute("class", "button");
92 field.parentNode.insertBefore(el, field);
94 el = document.createElement('input');
95 el.setAttribute("type", "button");
96 el.setAttribute("onclick", "svgedit_save()");
97 el.setAttribute("value", "SVG->TXT");
98 el.setAttribute("title", "Copy SVG from svg-editor to textarea");
99 el.setAttribute("class", "button");
100 field.parentNode.insertBefore(el, field);
116 var el = document.createElement('button');
117 el.setAttribute("id", "TZT");
118 el.setAttribute("class", "toolbutton");
119 el.setAttribute("onclick", "svgedit_init();");
120 el.setAttribute("title", "Edit this page as SVG!");
121 el.setAttribute("style", "float: left;");
122 field.parentNode.insertBefore(el, field);
123 el.appendChild(document.createTextNode("SVG"));
124 var el = document.createElement('br');
125 el.setAttribute('style', "clear: left;");
126 field.appendChild(el);}) ;