I have jeditable text field like below.
How to handle with links in text. Right now when I click on link it starts editing it instead of opening the link.
Hard to tell without a working example, but you can try to override jeditable's click behavior like this:
$("#yourEditable a").click(function(e) {
e.stopPropagation();
window.open($(this).attr("href"));
});