I have a .NET Razor Pages application and need draggable/sortable functionality.
I found the jQuery UI Draggable/Sortable component. I actually used this many years ago and it worked fine.
But the download page says it's stable for jQuery 1.8+ and I'm using jQuery 3.5.1.
Are there any newer versions of a draggable/sortable component?
If it makes any difference, I'm using Bootstrap 5. And my objects to be dragged are class="col-lg-6" <div>s within a class="row" <div>.
jQuery 3.5.1 is (much) newer than jQuery 1.8, so you are fine.
As for the draggable/sortable widgets, they are part of jQuery-UI and 1.13.2 is the newest version.
Related
I have a chatbot widget. It use jquery version 2.1.3. The widget is not used bootstrap. So I want add bootstrap. Because I want to add feature modal feedback on the widget
I see on https://getbootstrap.com/docs/4.0/getting-started/introduction/, the version latest of bootstrap is version 4
Is it possible to add bootstrap version 4 to my widget that use jquery version 2.1.3?
I'm trying to compare two pages and find out what went wrong https://web.archive.org/web/20141220055016/http://www.kenyabuzz.com/ and http://www.kenyabuzz.com/ on the archived version the dropdown on the top nav works. I don't know where the javascript is that onhover triggers on the ul how can I find it?
You included jQuery 1.11 and it dropped support for things used in the version of fancybox that you are using. Look to see if there is a newer version of fancybox or see if the jQuery migrate plugin will work for you.
on live version you are using new version of jquery which is breaking fancybox TypeError: f.browser is undefined because browser function is depreciated from jquery
You can fix it using jQuery Migrate plugin
It's a known problem that the older Bootstrap didn't work out of the box with jQuery UI, as you can see from this github discussion.
There are a few mashups of the two, including jQuery Bootstrap by John Seigers and jQuery UI Bootstrap by Addy Osmani.
Are those mashups still necessary with the new version of Bootstrap, or can you now just use Bootstrap and jQuery UI out of the box (as is alluded to vaguely in the github discussion)?
I am implementing a solution which is using Twitter Bootstrap 2.1 and jQuery UI 1.8.23 and I haven't experience any trouble so far.
Apparently Twitter Bootstrap v2 no longer conflicts with jquery ui.
You can find some more infos here.
Mark Otto states
We cannot guarantee compatibility with other frameworks like jQuery UI
...
so I guess you might have problems with some jQuery UI components and ask them to help you and find a solution.
At the moment I have a few problems with jqGrid.
My drupal version is 6 and currently running jquery version 1.6.2. I am using Lightbox and jquery UI at a time, I think jquery 1.6 not supports UI features. When I update my jquery version, all the links goes to lightbon and showing imagee not found. So how can I implement Jquery upper version and lightbox at a time.
Thanks in advance.
Don't update jQuery library manually, it can cause some js code to crash.
Instead, you can use jQuery Update to do that. It's more secure. This module updates your Drupal 6 jQuery version to v.1.3.2
Hope this helps... Muhammad
How to make this jquery UI code compatible with jQuery UI 1.7.2 and jQuery 1.3.2?
http://jsfiddle.net/jitendravyas/NTeXV/2/
In a old project where jquery 1.3.2 is being used heavily so i can't change that and I want to style some checkboxes like this I made this by reading documentation on jquery ui website the later I found that it only works with jQuery 1.4.4 or greater and jQuery UI 1.8.7+ see here http://jsfiddle.net/jitendravyas/GUwjK/
but I want to make it work with jQuery 1.3.2 and jQuery UI 1.7.2
$(function() {
$( "#check1, #check2" ).button();
});
According to the documentation: http://docs.jquery.com/UI/Button this feature was only created in version 1.8 - so you can't. The code just doesn't exist in older versions.
You could write it yourself of course, or try to strip out the parts you need and copy them.