Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Including jquery on a wordpress site Re: Including jquery on a wordpress site

#68523
jamygolden
Member

It looks like your image problem is not jQuery (It seems to be loading perfectly) but the urls you’ve used to display them.

Within your javascript:

...
{image : 'nordslide/1.jpg', title : 'Testimg1'},
{image : 'nordslide/2.jpg', title : 'Testimg2'},
{image : 'nordslide/3.jpg', title : 'Testimg3'},
...

They should all be:

...
{image : 'http://www.tingen.dk/nordslide/1.jpg', title : 'Testimg1'},
{image : 'http://www.tingen.dk/nordslide/2.jpg', title : 'Testimg2'},
{image : 'http://www.tingen.dk/nordslide/3.jpg', title : 'Testimg3'},
...