Wrox Home  
Search P2P Archive for: Go

  Return to Index  

javascript thread: Select Image...


Message #1 by "Robert Sindall" <rsindall@z...> on Fri, 24 Jan 2003 11:17:25 -0000
Hi Robert,

> I've written some code which takes a selection of text and makes it into a
> link.
>
> But I'm not sure how to make a selected Image in my RTB into a link?

This should point you in the right direction...

if(document.selection.type == "Control"){
  var selection=document.selection.createRange().item(document.selection);
  selection.outerHTML="<a href=\"somelink\">" + selection.outerHTML +
"</a>";
}

HTH,

Chris


  Return to Index