I'm trying to insert some scripts
of my WHMCS
into a HTML
page on my site, which returns a document.write(' Texto que irá aparecer ');
, and the text contained within document.write
is displayed in the HTML page. p>
Tutorial link : link
In order to work, I have to insert several <script></script>
which generates many requests.
I would like to make it appear only:
<h1>
Text that will appear </h1>
Instead of:
<h1><script language="javascript" src=" ">
Text that will appear </script><h1>
Example in JSFiddle
(used for example Hostgator whmcs)
Is there any way to make the text appear only?