In general, this problem applies to all loadable resources (js, css, images) For example, .css tried to do this:

<link rel="stylesheet" href="./css/jquery.mobile.min.css" /> 

But still, attributing "./" it turns out not that: pictures are not loaded, js and links also do not work, css seems to be loaded, but if you look through the browser, then there is nothing.

How to solve this problem?

    1 answer 1

    In general, the correct way was to write like this (slash without a dot):

     <link rel="stylesheet" href="/css/jquery.mobile.min.css" /> 

    Good night everyone =)