Reputation: 10519
I have a div that I have successfully made resizable horizontally in all browsers exept IE 8 and any browser on the iPad. Anyone know if there are anything special I can do to get a resizable div to work in these browsers?
I am using the default jqueryui css theme and setting the div resizble with the following jquery code...
$(".treeMenu").resizable({
handles: 'e, w'
});
Upvotes: 3
Views: 1875
Reputation: 9423
You can use jQuery Touch Punch for iPad support. It's an easy way to get jQuery UI to work with iPad touch events.
After you include it you would then use the resizable
event as normal.
Upvotes: 4