I am trying to use the jQuery Modal dialog , it's works fine like this:
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
But when I save them locally, the close icon is missing:
<link rel="stylesheet" href="Styles/jquery-ui.css" />
<script src="Styles/jquery.min.js" type="text/javascript"></script>
<script src="Styles/jquery-ui.min.js" type="text/javascript"></script>
When I inspect the html I could see:
<span class="ui-icon ui-icon-closethick" unselectable="on">close</span>
I also found it ui-icon-closethick in jquery-ui.css, but I cant find a way to save the icon locally
I found the Icon here.