How to customize jquery UI accordion icons?
accordion, icons, jquery, jquery-ui, jquery-ui-accordion
Solution
You would need to write some custom CSS to replace the jQuery UI icon that you plan to use. For example, in the case of the example code:
ui-icon-circle-arrow-e {background-image:url('path/to/my/images/filename.png') !important;}
Very similar to this SO question
Problem
I want to customize the icons for the accordion. I found the page here http://jqueryui.com/accordion/#custom-icons But it seems to give a name of something there for the header and activeHeader. How do you do this, if you just have a path to an image file?