I have a problem with jQueryUI resizable and Internet Explorer. I'm creating a resizable div which contains a span with some text in it. In IE10, if the text is larger than the container div, the div's handles are clickable only above and below the text. In Chrome it works perfectly.
This is the code (I made a jsFiddle for testing):
HTML
<div id="event">
<span>some text some text</span>
</div>
CSS
#event {
float: left;
position: absolute;
border: 2px solid #197ea3;
background: #aee3f4;
height: 16px;
overflow: hidden;
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 10px;
line-height: 16px;
padding-left: 3px;
white-space: nowrap;
text-overflow: ellipsis;
}
Javascript
$(document).ready(function() {
$("#event").resizable({
handles : "e"
})
});
EDIT: I added the text-overflow: ellipsis
property and updated the jsFiddle