File tree 2 files changed +13
-8
lines changed
2 files changed +13
-8
lines changed Original file line number Diff line number Diff line change 1
- ## HTML editor
2
- Created with love by Sanjay developer
1
+ # HTML editor
2
+ A simple live html editor
3
3
4
- ## Libraries used
5
- * CodeMirror
6
- * jQuery
7
- * FontAwesome
4
+ ### Libraries used
5
+ - CodeMirror
6
+ - jQuery
7
+ - FontAwesome
8
+
9
+
10
+ ** Happy Coding**
Original file line number Diff line number Diff line change @@ -15,7 +15,9 @@ $(document).ready(function(){
15
15
editor . setOption ( "theme" , "material-darker" ) ;
16
16
17
17
function loadHtml ( html ) {
18
- $ ( '#result' ) . contents ( ) . find ( 'html' ) . html ( html ) ;
18
+ const document_pattern = / ( ) * ?d o c u m e n t / i;
19
+ let finalHtml = html . replace ( document_pattern , "document.getElementById('result').contentWindow.document" ) ;
20
+ $ ( '#result' ) . contents ( ) . find ( 'html' ) . html ( finalHtml ) ;
19
21
}
20
22
21
23
loadHtml ( $ ( '#editor' ) . val ( ) ) ;
@@ -42,4 +44,4 @@ $(document).ready(function(){
42
44
43
45
} ) ;
44
46
45
- } ) ;
47
+ } ) ;
You can’t perform that action at this time.
0 commit comments