Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下のようなジェディタブルテキストフィールドがあります。
テキスト内リンクの扱い方。現在、リンクをクリックすると、リンクを開く代わりに編集が開始されます。
実際の例がないとわかりにくいですが、次のように jeditable のクリック動作をオーバーライドすることができます。
$("#yourEditable a").click(function(e) { e.stopPropagation(); window.open($(this).attr("href")); });