BopbeeHelp Center

Fix HTML active content error

Move inline JavaScript to external files for security compliance.

What you see

HTML file contains disallowed active content.

Blocked

<script>alert(1)</script>

<a href="javascript:...">

Allowed

<script src="app.js"></script>
Inline scripts are blocked; link external .js files instead.

Why

Inline scripts, javascript: links, and onclick handlers are blocked for security on uploaded static sites.

What to do

Move JavaScript to a file

Create a separate .js file for your scripts.

Use <script src="app.js"></script> in your HTML.

Remove inline handlers

Delete embedded <script> blocks and inline event handlers.

Re-upload

Upload the corrected files.

On this page