I need to change the forward (>, >|) and back (<, |<) pager icons used by jqgrid. The icons I'd like to use are already contained within jquery ui file ui-icons_888888_256x240.png. How do I accomplish this?
Update:
Based on the response here [jqGrid Pager Area - Using Font Awesome Icons, I've added the following code to my page, but the icons aren't changing. I'm getting the pager, but I don't think I'm getting the icon span. What am I doing wrong?
<script type="text/javascript">
var $pager = $("#" + pagerName);
var icon = $pager.find(".ui-icon>span.ui-icon-seek-first");
icon.removeClass("ui-icon-seek-first");
icon.addClass("ui-icon-arrowthickstop-1-w");
$pager.find(".ui-icon>span.ui-icon-seek-prev")
.removeClass("ui-icon-seek-prev")
.addClass("ui-icon-arrowthick-1-w");
$pager.find(".ui-icon>span.ui-icon-seek-next")
.removeClass("ui-icon-seek-next")
.addClass("ui-icon-arrowthickstop-1-e");
$pager.find(".ui-icon>span.ui-icon-seek-end")
.removeClass("ui-icon-seek-end")
.addClass("ui-icon-arrowthick-1-e");
</script>