Removing handle image from jquery UI resizable element

javascript, jquery, jquery-ui

Solution

You have two options:

- You can override `ui-resizable-handle` or `ui-resizable-se` as mentioned on the jQuery site at the very bottom.

- You can alter the image file "ui-icons_222222_256x240.png", an example of which is hosted here, by Google.

Problem

How can I remove the default `southeast (se)` handle image of the resizable element and add my own image?

Original source