Unable to preventDefault inside passive event listener

0 votes

I am trying on some built-in events:

 $('.sortable-handler').on('touchstart', function (e) {

    e.preventDefault();

    alert('touchstart');

});


$('.sortable-handler').on('touchmove', function (e) {

    e.preventDefault();

    console.log('touchmove');

});


$('.sortable-handler').on('touchcancel', function (e) {

    e.preventDefault();

    console.log('touchcancel');

});


$('.sortable-handler').mouseleave(function (e) {

    e.preventDefault();

    console.log('mouseleave');

});

But I am getting this error:

Unable to preventDefault inside passive event listener due to the target being treated as passive. See https://www.chromestatus.com/features/5093566007214080

I am using  Framework7 sortable list but it doesn't create an event when it's triggered that's why I tried creating this built-in event. So can someone help me with this?

May 12, 2022 in Node-js by Kichu
• 19,040 points
3,775 views

No answer to this question. Be the first to respond.

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
0 votes

You could just use this code:

  $$('li').on('sortable:sort',function(event){
    alert("From " + event.detail.startIndex + " to " + event.detail.newIndex);
  });

This code will handle sortable list in Framework7 when the user release a currently sorting element in a new position.

I hope this helps.

answered May 13, 2022 by narikkadan
• 63,600 points

edited Mar 5

Related Questions In Node-js

0 votes
1 answer

How to include scripts located inside the node_modules folder?

Hello @kartik, I would use the path npm ...READ MORE

answered Jul 15, 2020 in Node-js by Niroj
• 82,840 points
9,085 views
0 votes
0 answers
0 votes
1 answer

How to access custom attributes from event object in React?

The best way to access custom attributes ...READ MORE

answered Feb 22 in Node-js by Kavya
56 views
0 votes
1 answer

What is the best way to trigger change or input event in react js?

To handle change or input events in ...READ MORE

answered Feb 22 in Node-js by Kavya
84 views
0 votes
1 answer
0 votes
1 answer
0 votes
1 answer

What is jQuery?

Hey, jQuery is a fast and concise JavaScript ...READ MORE

answered Feb 14, 2020 in JQuery by kartik
• 37,520 points
1,581 views
0 votes
1 answer

Uncaught TypeError: Cannot read property 'msie' of undefined - jQuery tools

Hello, Use the following script tag in your ...READ MORE

answered Apr 28, 2020 in JQuery by Niroj
• 82,840 points
16,627 views
0 votes
1 answer

Uncaught Error: Bootstrap's JavaScript requires jQuery

Hello @kartik, You have provided wrong order for ...READ MORE

answered Apr 28, 2020 in JQuery by Niroj
• 82,840 points
23,897 views
0 votes
1 answer

How to make Bootstrap popover Appear/Disappear on hover instead of click?

Hello @kartik, Set the trigger option of the popover to hover instead ...READ MORE

answered May 12, 2020 in JQuery by Niroj
• 82,840 points
3,594 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP