external js file is not working in safari app mode in ipad3?

854 Views Asked by At

In footer we are giving

<script src="/js/general.js"></script> 

file but in app mode of (ipad3, iphone5) that file is not working. Any suggestions that would be great.

2

There are 2 best solutions below

0
On

Try to write the full url of your js file, like,

<script src="http://www.example.com/js/general.js"></script> 
0
On

Try providing the type="text/javascript" in the script tag.