Menu
  • HOME
  • TAGS

Image border on the right of div to watch jquery 'selection'

jquery,css,jquery-ui,jquery-resizable

According to the docs it's pretty easy to add a handle element. I'd do it like so: #jobDisplay { ... position: relative; } .ui-resizable-handle-e { position: absolute; width: 25px; right: 0; top: 0; bottom: 0; cursor: pointer; } <div id="jobDisplay"> <div class="ui-resizable-handle ui-resizable-handle-e"></div> ... $("#jobDisplay").resizable({ stop: function (event, ui) {},...