Questions tagged [jquery-ui-touch-punch]

jQuery Touch Punch is a “small hack” that enables touch interaction with jQuery UI widgets.

See http://touchpunch.furf.com/

62 questions
0
votes
1 answer

Touch punch - convert clicks to touches

I started to use recently an awesome plug-in to convert touch evens to mouse clicks. But just today I came across one problem jQuery('.draggable').click(function(){ alert('clicked'); }) To fire alert I need to make two touches(mobile device),…
Alex F
  • 183
  • 2
  • 14
0
votes
1 answer

On Mobile device jQuery Touch select div's in random order

On Mobile device I want to select specific div w.r.t. touch ie. when user touch on first div and touchmove to 3rd div then these both div's need to be selected. Like vise the order can be random 1 3 2 4, 1 2 3 4 The attached image will give better…
mujaffars
  • 1,395
  • 2
  • 15
  • 35
0
votes
1 answer

Using touchpunch with JQuery UI Accordion Sortable does not work correctly with touch

I just created a sortable Accordion with JQuery UI and used touchpunch to enable touch devices to sort the sections. Drag and drop works fine, but I noticed that "touch-to-extend" does not always work and i have to touch a few times to make the…
Fynn
  • 210
  • 1
  • 6
  • 28
0
votes
1 answer

TouchPunch Not Re-Ordering Items In Sortable List

I have a JQueryUI Sortable list in a web application, however this doesn't work when used on a mobile device - attempting to re-order the items instead just scrolls the page. The solution to this appears to be to use TouchPunch. When implemented,…
Gavin Coates
  • 1,366
  • 1
  • 20
  • 44
0
votes
1 answer

Jquery Touch Punch Draggable for my Android

Hello I am trying to figure out how to get this code here draggable for my phone I have included the touch punch library but when i try to drag anything on my phone it does not work does anyone know what i am doing wrong? this is the code that i am…
0
votes
0 answers

Scrolling on mobile device using Highcharts and touchpunch

I am attempting to use Highcharts in a web application for mobile, but I'm running into the issue of scrolling over the charts on mobile as has been previously noted, i.e. Scrolling over highcharts graph. I tried including the script…
0
votes
1 answer

jquery touch punch not working

I'm trying to make my drag and drop functionality work on phones. So I'm trying to use jquery touch punch but it doesn't seem to be enabling the drag and drop on the phone. Here's my code. I put jquery.ui.touch-punch.min.js in the…
Jill
  • 533
  • 7
  • 22
0
votes
1 answer

How to use jQuery Touch Punch

For jQuery Touch Punch, you have to download jquery.ui.touch-punch.js. I was wondering where do I have to put this file? http://touchpunch.furf.com/ Also the second step of implementing it is Include Touch Punch after jQuery UI and before its first…
Jill
  • 533
  • 7
  • 22
0
votes
0 answers

My selectToUISlider slides out of range and only updates value on click, not when you slide

As seen here on top of the page: http://bit.ly/1HPqZ5j It also doesn't work on mobile (cannot slide) although I added jquery.ui.touch-punch.min.js
Dieter
  • 157
  • 1
  • 7
0
votes
2 answers

jquery-ui-touch-punch and .on() doesn't work on an iPad

I have a custom web dashboard that relies heavily on jQuery, jQuery UI, and jquery-ui-touch-punch. Everything works except for click events on dynamic content (js added elements) on an iPad. So this works everywhere $('.foo').click( function() { …
forlogos
  • 11
  • 6
0
votes
0 answers

Why is my jQuery taphold event firing twice?

I'm attempting to use jQuery's Sortable widget on a mobile device (jquery-mobile/jquery-touch-punch). However the taphold event fires twice with this setup (but just the once on non-touch devices).
  • Item 1
  • Item…
0
votes
1 answer

Jquery Sortable touch funcitonality ie 11 windows 8.1

I'm having a lot of trouble getting the JQuery Sortable functionality working on my Windows 8.1 device which is running ie11. I had this working on an iPad through the TouchPunch library, but I've had no luck with the new Dell Tablet I'm working…
0
votes
0 answers

mousemove effect on mobile like on http://d3js.org/

How could I transfer this 'scroll' effect from http://d3js.org/ to mobile devices (ipad, android,...)? It works on the desktop, but it won't work on mobile.
0
votes
0 answers

Only google CDN link to jquery ui works on iPad

I have used touch punch to get slider of jquery working in myiPad. But, it works only if I give : And it doesn't work, if I try to use -
Smitha
  • 6,110
  • 24
  • 90
  • 161
0
votes
1 answer

updating the position of a JQuery UI draggable

If I scroll a page the currently dragged draggable stays in the same position. This leads to the finger not being above the draggable anymore. Is there any way in which I could update the position of a draggable to the current touch location without…