Click the boxes below to select them one by one - updated in 2024

The free online WYSIWYG HTML editor allows you edit your source code without downloading and installing any application. Guaranteed the best visual webpage builder you can find out there!

Compose the perfect HTML source code online in your web browser without registration and without downloading any program, for Free!

Interactive source editor HTML Cleaning Find and Replace
5 12 8

Generate HTML templates just like with CoffeCup, CKEditor or TinyMCE but this time see the source code changing with the editor! PSD and PDF converters are coming soon for PHP, ASP, Linux etc. with many examples for you to learn coding!

Convert almost any digital document format to a well-composed web article with just a few mouse clicks.

$(document).ready(function () {
	var selectcounter = 1;
	
	$(".selectable").each(function() {
		idja = "selectable" + selectcounter;
		$(this).attr('id', idja);
		$(this).attr('onclick', 'selectText("' + idja + '")');
		selectcounter++;
	});		
});

function selectText(containerid) {
    if (document.selection) {
        var range = document.body.createTextRange();
        range.moveToElementText(document.getElementById(containerid));
        range.select();
    } else if (window.getSelection) {
        var selection = window.getSelection();
        selection.removeAllRanges(); // Clear any existing selections
        var range = document.createRange();
        range.selectNode(document.getElementById(containerid));
        selection.addRange(range);
    }
}