Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Removing handle image from jquery UI resizable element

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

like image 955
Gaurav Avatar asked May 29 '12 14:05

Gaurav


2 Answers

i always do this in my .css file

.ui-dialog .ui-resizable-se {
    background-image: url("");
}

and it works all the time :)

like image 102
MuntingInsekto Avatar answered Oct 06 '22 00:10

MuntingInsekto


You have two options:

  1. You can override ui-resizable-handle or ui-resizable-se as mentioned on the jQuery site at the very bottom.
  2. You can alter the image file "ui-icons_222222_256x240.png", an example of which is hosted here, by Google.
like image 28
woz Avatar answered Oct 06 '22 01:10

woz