Complete new redesigned icons as web font for jQuery UI
332 Unique icons for jQuery UI / jQuery Mobile
This list shows all available icon names in alphabetical order without the prefix 'ui-icon-'.
a) alias of another;
d) deprected
Usage
Include the Icon Font
Copy the file "jquery-ui-1.12.icon-font.min.css"
or "jquery-ui-1.11.icon-font.min.css" and the folder "font" into your folder, which holds
your CSS-files.
You can also rename e.g. jquery-ui-1.12.icon-font.min.css to jquery-ui.icon-font.min.css.
For debugging and/or develope you may use CSS-files without ".min" (e.g. jquery-ui-1.12.icon-font.css).
Add in the <head>-section of your html document a link to the new CSS-file
For jQuery Mobile it doesn't matter wich file is used, but only jquery-ui-1.11.icon-font is fully tested.
Example for jQuery-UI 1.12.x:
<head>
<!-- … -->
<link rel="stylesheet" type="text/css"
href="css/theme/jquery-ui.min.css" />
<!-- ui version 1.12.x -->
<link rel="stylesheet" type="text/css"
href="css/theme/jquery-ui-1.12.icon-font.min.css" />
<script type="text/javascript"
src="js/jquery.min.js"></script>
<script type="text/javascript"
src="js/jquery-ui.min.js"></script>
<!-- … -->
</head>
Example for jQuery-UI 1.11.x or jQuery Mobile:
<head>
<!-- … -->
<link rel="stylesheet" type="text/css"
href="css/theme/jquery-ui.min.css" />
<!-- ui version 1.11.x -->
<link rel="stylesheet" type="text/css"
href="css/theme/jquery-ui-1.11.icon-font.min.css" />
<script type="text/javascript"
src="js/jquery.min.js"></script>
<script type="text/javascript"
src="js/jquery-ui.min.js"></script>
<!-- … -->
</head>
How to use an icon in HTML-markup
To display an icon is really simple:
Example Code
<p class="ui-widget-content
ui-state-default ui-helper-clearfix">
<span style="float: left; margin-right: 0.5em;"
class="ui-icon ui-icon-jquery">icon</span>
ui-icon-jquery
</p>
Example Result
In the section Demos are some more examples.
Supported jQuery UI
Current supported jQuery UI Version: 1.11.2, 1.11.3, 1.11.4, 1.12 & 1.12.1;
supported jQuery Mobile 1.4.5
Supported Browser
Demos
This demonstrates widgets and themes with the new icons.
Please note:
Make sure you are using them with a compatible jQuery version.
This demo uses jQuery 3.1.1 and jQuery UI 1.12.1.
This demo perhabs may not work with InternetExplorer versions < 10, due the limitations of jQuery and jQuery UI support.
Accordion
First
This is the content of the first accordion.
Second
This is the content of the second accordion.
Third
This is the content of the third accordion.
Dialog
jQuery UI Dialog
This is only a demo without any callback on close.