• I want to embed following script to my wordpress post. But this script is not working. Even with the help of plugin is not worked.

    <script type=’text/javascript’>ch=’Geo_Super’; ch_width=600; ch_height=400;</script><script type=’text/javascript’ src=’https://c247.to/live.js’></script&gt;

    How can I add

Viewing 1 replies (of 1 total)
  • I think the problem is the weird single quotation marks, they’re fancy quotes not standard quotes and are probably getting switched out with their related HTML entity instead.

    Try this:

    <script type="text/javascript">ch="Geo_Super"; ch_width=600; ch_height=400;</script><script type="text/javascript" src="https://c247.to/live.js"></script>

    Note the difference between and ' or "

Viewing 1 replies (of 1 total)
  • The topic ‘Want to add javascript to wordpress post.’ is closed to new replies.