JQuery Resizable Touch Screen

I am using the jQuery resizable method to resize a div, it works fine with the mouse, but it doesn’t work on the touch screen. It does not display a scalable cursor and does not resize with the touch device. like samsung android tablet please let me how to fix it.

plunker http://plnkr.co/edit/mU18FfjoXRHgRkzAvIcx?p=preview please advise me how to continue working with the touch device.

<!doctype html>
+4
source share
1 answer

I tried touchpunch and it worked.

Below are the instructions on their github page :

, jQuery UI:

jQuery jQuery .

<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="http://code.jquery.com/ui/1.8.17/jquery-ui.min.js"></script>

Touch Punch jQuery .

, jQuery, "" jquery.ui.mouse.js, Touch Punch .

<script src="jquery.ui.touch-punch.min.js"></script>

3. JQuery UI, , , .

<script>$('#widget').resizable();</script>
+6

All Articles