In a previous question someone put me on to "rangy" http://code.google.com/p/rangy/. It's interesting even if I don't fully understand it. I am not a JavaScript person. However, I have managed to do most things with it that I need with the exception of 1. The concept is a very basic RTE, just bold, italic etc. I managed that, created a link - done that too, OK what might have taken a JS guy 2 mins has taken me hours and hours - frustrating but I think I am learning a bit - very slowly. Anyhow, using rangy I can create (excuse poor code) an href link like this:

$('#linkbut').live('click',function(){
        var sel = rangy.getSelection();     
        var range = sel.getRangeAt(0); 
        range.splitBoundaries(); 
        var textNodes = range.getNodes([3]); 
            for (var i = 0, len = textNodes.length; i < len; ++i) { 
            var newLink = document.createElement('a');
            newLink.setAttribute('href','test.html');
            var linkText = document.createTextNode(sel);
            var parent = textNodes[i].parentNode;
            parent.insertBefore(newLink,textNodes[i]); 
            newLink.appendChild(linkText);
            range.deleteContents();
            }
    });

#linkbut is a simple HTML button and the actual href (test.html) above will come from the value of an input field and not be "hard coded". But what I cannot get done is "delete" the link if I want to remove it.

Further explanation: Once the link is created I may want to delete it so I have tried the "reverse" of the code above - obviously no good, so have got "this far":

$('#deletelink').live('click',function(){
                var sel = rangy.getSelection();     
                var range = sel.getRangeAt(0); 
                range.splitBoundaries(); 
                var textNodes = range.getNodes([3]); 
                var txt = sel.toString();
                range.deleteContents();
                var replaceText = document.createTextNode(txt);
                sel.appendChild(replaceText);

            });

What I really would like to do (may not be possible) is to have some "generic" function that removes ANY tag element from a node in the above what I am trying to do is:

  1. Get the range - sel = rangy.getSelection();
  2. Turn "sel" into a string variable var txt = sel.toString();
  3. Delete the content - including the a elements range.deleteContents(); then
  4. Replace the deleted with the "text" version var replaceText = document.createTextNode(txt); sel.appendChild(replaceText);

I get "so far" the content is deleted BUT I cannot get the "new - text replacement" to function.

Hope all is clear - cos it isn't to me ;)

link|improve this question

Why don't you do element.html("")? or am I not understanding your question? – coderkid Mar 20 '11 at 15:04
@NeXXeuS - Now you have me totally confused :) I wouldn't even know how, but the point is there there could be many links in one article but I only want to remove the selected link – Russell Parrott Mar 20 '11 at 15:08
feedback

1 Answer

You should probably look up on how to do nested selection in jQuery and as NeXXeuS said you should look into removing the contents via .html() on your selected method.

If you have:

<div id="mydiv"></div>

And you run: `

$('#mydiv').append('<a href="test.html">Test Link</a>');

The html will look like:

<div id="mydiv"><a href="test.html">Test Link</a></div>

You can this select the link with:

` $('#mydiv a');

You can delete it by doing:

`$('#mydiv').html('');

link|improve this answer
JQuery - that's great up to a point, the problem with it is that it will either "prepend" or "append" what I cannot get it to do ins "insert" at the cursor - hence use of something like rangy, also, this is not a textarea this is a pure "div" with an #ID, too much <div>/<span> nesting makes VERY ugly HTML on output, sooooo much to clean up in the back end. NOW if there was a way to insert at cursor using JQ - i'd smile – Russell Parrott Mar 20 '11 at 15:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.