Posted on Wednesday, December 1, 2010 Shuttle sides label and hide sort buttons with jQuery Category APEX and jQuery Here is an easy trick to place top labels in shuttle item left and right sides. If you are using APEX 3.x load jQuery library in page template header or page HTML header. Place to page HTML header <script type="text/javascript"> $(function(){ $('<div class="fielddatabold">Not Selected</div>').insertBefore('#Px_MY_SHUTTLE_LEFT'); $('<div class="fielddatabold">Selected</div>').insertBefore('#Px_MY_SHUTTLE _RIGHT'); }); </script> Replace "Px_MY_SHUTTLE" with your shuttle name. If you also like to remove sort buttons, include to page HTML header: <script type="text/javascript"> $(function(){ $('#Px_MY_SHUTTLE').find('.shuttleSort2').remove(); }); </script>