JS embed code using secure link not working properly in Dreamweaver

  • prabaharan
    Asked on March 8, 2015 at 8:22 PM

    <script type="text/javascript" src="https://secure.jotform.us/jsform/50664271913152"></script>

    secure link is not working on a dreamweaver embedded page I would greatly appreciate your help. Page appears on the site but page breaker is not responding.  None secure link working without issue.

    Thanks

    Jude

  • Charlie
    Replied on March 9, 2015 at 2:28 AM

    Hi Jude,

    It seems like this is a duplicate thread, please refer to this link instead: http://www.jotform.com/answers/529207. I've answered your query there.

    Thank you.

  • prabaharan
    Replied on March 9, 2015 at 5:31 PM

    I have tried all the available options, secure link is not working have a loo at it.

    http://www.novaracetiming.com/Untitled-2.html

     

    Non secure link working fine. have a look at it

    http://www.novaracetiming.com/Test-Unsecure.html

     

    For both I  used Dreamweaver script link

    Thanks

    Jude 

  • Ben
    Replied on March 9, 2015 at 5:59 PM

    I am looking at both pages Jude and both seem to be working without any issues.

    There are issues however with the pages because you have embedded the source code version of your jotform between <head> and <body> elements of your page.

    This is your current setup on both pages:

    <head>
    </head>
       <form>
       </form>
    <body>
    </body>

    This is what it should be like:

    <head>
    </head>
    <body>
       <form>
       </form>
    </body>

    Further more, you should make sure that only the HTML code of your form goes into Body element and that all the other resources go into the head (CSS and js).

    Once you do your pages should work properly for you.

    Do let us know how it goes Jude