jquery-ui icons
        Posted  
        
            by cf_PhillipSenn
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by cf_PhillipSenn
        
        
        
        Published on 2010-06-03T20:21:15Z
        Indexed on 
            2010/06/03
            20:24 UTC
        
        
        Read the original article
        Hit count: 273
        
jquery-ui
I understand that if I use this:
<script src="http://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("jquery", "1");
google.load("jqueryui", "1");
</script>
<span class="ui-icon ui-icon-arrowthick-1-n"></span>
Then an arrow appears. I don't understand how to wrap the arrow with this:
ui-state-default ui-corner-all
because themeroller is using list items, and I'm using table head cells. I don't want to use:
<th class="ui-state-default ui-corner-all">
because that highlights the entire cell.
© Stack Overflow or respective owner