I wonder if there is a JavaScript that automatically turns text into a link when you type in “www.example.com”?
HTML
<div id="test">
If I type in www.example.com I want it to become a link automatically.
</div>
Javascript:
$(window).load(function(){
document.getElementById('test').contentEditable = true;
// how
});