jQuery slider and background image works in Firefox but not Chrome -


i uploaded wordpress site live server, , i'm seeing background image , slider not working in chrome. have no idea wrong jquery loading correctly. able see obvious may have missed?

here site: https://learnmarimba.com

your website uses https (secure) protocol , using resources called using http. chrome not mix of https , http. can see warnings in crome console.

omit protocol. instead of

<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js?ver=1.7.1'></script> 

use

<script type='text/javascript' src='//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js?ver=1.7.1'></script> 

also have @ post on protocol relative urls.

as side note, google analytics inclusion snippet checks protocol current webpage called , uses in url include javascript file.

ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; 

source


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -