Skip to content

Commit 5416202

Browse files
committed
Bug fixes
1 parent bcc12e8 commit 5416202

File tree

2 files changed

+13
-8
lines changed

2 files changed

+13
-8
lines changed

README.md

+9-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1-
## HTML editor
2-
Created with love by Sanjay developer
1+
# HTML editor
2+
A simple live html editor
33

4-
## Libraries used
5-
* CodeMirror
6-
* jQuery
7-
* FontAwesome
4+
### Libraries used
5+
- CodeMirror
6+
- jQuery
7+
- FontAwesome
8+
9+
10+
**Happy Coding**

js/main.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ $(document).ready(function(){
1515
editor.setOption("theme", "material-darker");
1616

1717
function loadHtml(html) {
18-
$('#result').contents().find('html').html(html);
18+
const document_pattern = /( )*?document/i;
19+
let finalHtml = html.replace(document_pattern, "document.getElementById('result').contentWindow.document");
20+
$('#result').contents().find('html').html(finalHtml);
1921
}
2022

2123
loadHtml($('#editor').val());
@@ -42,4 +44,4 @@ $(document).ready(function(){
4244

4345
});
4446

45-
});
47+
});

0 commit comments

Comments
 (0)