Skip to main content
This topic has been closed for replies.
Correct answer EASYPAY GROUP

Hi,

I'd start by changing:

<script src="http://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>

<link href="http://fonts.googleapis.com/css?family=Open+Sans:300,600" rel="stylesheet" type="text/css">

to

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>

<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,600" rel="stylesheet" type="text/css">

in your <head>

The other errors are probably a typo?

Greetz

Kristof

1 reply

BenPleysier
Community Expert
Community Expert
August 29, 2017

There are a number of errors that can be seen when you open the developer panel by pressing F12 in either Firefox or Chrome.

The errors are all related to the CORS (Cross-origin resource sharing) policy due the fact that the main document is secure (HTTPS) and the files that your are linking to are not (HTTP).

Wappler is the DMXzone-made Dreamweaver replacement and includes the best of their powerful extensions, as well as much more!
cate1941Author
Participant
August 29, 2017

Thank you. How would I correct for this?

EASYPAY GROUPCorrect answer
Inspiring
August 29, 2017

Hi,

I'd start by changing:

<script src="http://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>

<link href="http://fonts.googleapis.com/css?family=Open+Sans:300,600" rel="stylesheet" type="text/css">

to

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>

<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,600" rel="stylesheet" type="text/css">

in your <head>

The other errors are probably a typo?

Greetz

Kristof