Advertisement
rg443

wizard: img url -> img (width 100%)

Mar 24th, 2013
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. document.body.innerHTML="";
  2. var t=document.createElement("input");t.type="text";t.style.width="500px";document.body.appendChild(t);
  3. var p=document.createElement("pre");document.body.appendChild(p);
  4. t.oninput=function(){p.innerText='<img src="'+t.value+'" alt="" width="100%"/>' }
  5.  
  6. //t.onpaste=
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement