HTML editor shows blank screen

Hi,

I’m new to BB, and can’t figure out why when I add an HTML module and then add code, save, then go back to re-edit the editor is blank (the rendered code is on the page).

What am I doing wrong?

sample of the code I added:

<!DOCTYPE html>
<head>			
	<script src="/testscript_new.js" type="text/javascript"></script>	
</head>
<body>	
	<div id="data">	
	<table id="content">
</table>				
	</div>	
</body>
</html>

you cant re-declare html and body tags like that.

Try adding this to the html module

<script src="/testscript_new.js"></script>
<div id="data">	
	<table id="content"></table>				
</div>

I responded to your ticket. The HTML wasn’t valid and so you will need to contact the author of the code to resolve the issue.

Thanks for the assistance

1 Like