iOSList 2.0.0
iOS-style sticky headers with jQuery
iOSList is a jQuery plugin that creates iOS-style sticky headers similar to those seen in the Music and Contacts apps on Apple devices. It is tested to work in the following browsers:
- Mac (Chrome 10+, Safari 4+, Firefox 3.5+, Opera)
- PC (Chrome 10+, Safari 4+, Firefox3.5+, Opera, IE6+)
- iOS 3+ (Safari Mobile)
- Android 2.2+ (Chrome, Firefox 4, Opera 11)
Demo
A
- Afghanistan
- Akrotiri
- Albania
- Algeria
- American Samoa
B
- Bahamas, The
- Bahrain
- Bangladesh
- Barbados
- Bassas da India
C
- Cambodia
- Cameroon
- Canada
- Cape Verde
- Cayman Islands
D
- Denmark
- Dhekelia
- Djibouti
- Dominica
- Dominican Republic
E
- Ecuador
- Egypt
- El Salvador
- Equatorial Guinea
- Eritrea
F
- Falkland Islands (Islas Malvinas)
- Faroe Islands
- Fiji
- Finland
- France
G
- Gabon
- Gambia, The
- Gaza Strip
- Georgia
- Germany
Getting Started
Download the production version.
In your web page:
<!-- in the head tag -->
<link rel="stylesheet" href="css/jquery.ioslist.css" />
<!-- somewhere in the body tag -->
<div id="list1">
<div class="ioslist-group-container">
<div class="ioslist-group-header">A</div>
<ul>
<li>Afghanistan</li>
<li>Akrotiri</li>
<li>Albania</li>
<li>Algeria</li>
<li>American Samoa</li>
</ul>
</div>
<div class="ioslist-group-container">
<div class="ioslist-group-header">B</div>
<ul>
<li>Bahamas, The</li>
<li>Bahrain</li>
<li>Bangladesh</li>
<li>Barbados</li>
<li>Bassas da India</li>
</ul>
</div>
<div class="ioslist-group-container">
<div class="ioslist-group-header">C</div>
<ul>
<li>Cambodia</li>
<li>Cameroon</li>
<li>Canada</li>
<li>Cape Verde</li>
<li>Cayman Islands</li>
</ul>
</div>
</div>
<!-- near closing body tag -->
<script src="js/jquery.min.js"></script>
<script src="js/jquery.ioslist.js"></script>
<script>
$(function(){
$("#list1").ioslist();
});
</script>
Documentation
Configuration Options & Their Defaults
Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style.
Also, please don't edit JS files in the "dist" subdirectory as they are generated via grunt. You'll find source code in the "src" subdirectory!
Release History
License
Copyright (c) 2014 Brian Hadaway Licensed under the MIT license.