Hallo!
folgendes Script:
<script src="js/jquery-1.3.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
var linkable_content = $("body").html().replace(/(https?:\/\/[^ ;|\\*'"!,()<>]+\/?)/g,'<a href="$1">$1</a>');
$("body").html(linkable_content);
});
</script>
<BODY>
google.de<br>
www.google.de http://www.google.de<br>
</BODY>
Wie erreiche ich, dass aus allen 3 anklickbare Links werden?
Sansi