Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have this snippet:

<div contenteditable="true"> father
      <a contenteditable="false" href="#"> myLink </a>
</div>

My problem is that if I place caret after

</a> 

and I try to backspace for remove myLink html tag, It doesn't work in firefox, but it works in chorme, opera, safari and explorer. Other hand if in firefox I select

<a contenteditable="false" href="#"> myLink </a>

and then delete it with backspace it works!.

Possible workaround It is range selecting of the element

<a contenteditable="false" href="#"> myLink </a>

programmatically when user digit backspace key.

How can I do this in jquery? If the caret cursor is after

</a>

and user digit backspace I want select

<a contenteditable="false" href="#"> myLink </a>

and remove that node.

share|improve this question

1 Answer

Add a span tag with contenteditable=true like below,

<a contenteditable="false" href="#"><span contenteditable="true"> myLink </span></a>

Check jsFiddle here,

I tested it in FF, IE 8 and Chrome and was able to remove with backspace, but the user experiance is different in FF and other browsers.

I am not sure if this is the best way to do it.

Edit: Seems like this is already been answered here

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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