When viewing a photographer's gallery, there is a pull down that allows the photos to be sorted by upload date, shot date, Registration number, and airport code. I like this feature. The choice for this pull down menu needs to included in the html that selects a new page. Otherwise you have to re-apply the pull down choice again.
I'm talking about this pull down:
<form class="form-inline" name="change_sort" method="GET">
<label>Sort photos by </label> <select name="sortby" id="sortby" class="medium_text" onchange="change_sort.submit()">
<option value="">Upload date (latest first)</option>
<option value="shot1">Shot date (latest first)</option>
<option value="shot2">Shot date (earliest first)</option>
<option value="taila2z" selected>Registry number (A-Z)</option>
<option value="tailz2a">Registry number (Z-A)</option>
<option value="airport">Airport Code</option>
<option value="views">Views</option>
</select>
And these page selection buttons:
<div class="pagination pagination-centered">
<ul>
<li><a href="http://www.airport-data.com/photographers/Glenn+E.+Chatfield:375/SF-340:10413:1.html">1</a></li>
<li><a href="http://www.airport-data.com/photographers/Glenn+E.+Chatfield:375/SF-340:10413:2.html">2</a></li>
<li><a href="http://www.airport-data.com/photographers/Glenn+E.+Chatfield:375/SF-340:10413:3.html">3</a></li>
<li class="active"><span>4</span></li>
</ul>