Skip to main content
Filter by
Sorted by
Tagged with
-2 votes
0 answers
33 views

jQuery SyntaxError in Edge: Unrecognized Expression [closed]

I'm encountering a peculiar issue in Edge where my jQuery selector is throwing a Uncaught error: SYntax Error, unrecognized expression: for the following selector: $('.usname,.myNameValue,details ....
Prabhu Thangavel's user avatar
0 votes
1 answer
33 views

Multiple Date Pickers - disable selected dates

I'm using 'MultiDatesPicker for jQuery UI' http://luca.lauretta.info/Multiple-Dates-Picker-for-jQuery-UI/ which as far as I can tell uses jQuery-ui Datepicker. On my site I've got 3 date pickers ...
Tom's user avatar
  • 1,598
2 votes
3 answers
67 views

Removing Last Text Parentheses Using jQuery From a String

I am trying to remove the text from the last parentheses within a string using jQuery. I am able to remove the parentheses from the string but the code removes every parentheses and I need the last ...
Abbasi's user avatar
  • 23
1 vote
1 answer
69 views

Clear Selectable Element Filter using JQuery Button

I am following the below answer for my charting scenario, I have no problem in expected functionality like rendering the chart, filtering the charts. Editing Google Charts Category Filter My Problem ...
Curious_learner's user avatar
1 vote
1 answer
60 views

how to adjust draggableElement to have correct x and y position

I have implemented chart js to plot a two curve indicated by red and blue line. I want to add a slider (black vertical line) so that it remains always within two curves and user can move it left and ...
Sagar Rawal's user avatar
0 votes
1 answer
28 views

activeClass and hoverClass not work in jQuery UI Droppable

My drop function fires and everything seems correct but the hoverClass and activeClass does not change the div background. I've tried this under Chrome, Firefox, and Edge. It has to be something I am ...
hassan's user avatar
  • 3
0 votes
1 answer
34 views

How can I make slider work correctly if it gets scaled with transform:scale()

I have a jQWidget slider on a page, but the same problem exists with the jQuery slider. If I set a transform: scale(0.7) to any element above in the hierarchy, the slider does show not the correct ...
robsch's user avatar
  • 9,648
0 votes
0 answers
20 views

Issue writing unit tests for a jQuery datepicker plugin

the start of my plugin (function(factory) { if (typeof define === "function" && define.amd) { define(["jquery", "jquery-ui-dist"], factory); } else { ...
Mo1's user avatar
  • 379
0 votes
1 answer
36 views

How to use both sortable and draggable in jQuery UI simultaneously

html: <div class="item-list" id="list"> <div class="draggable" data-index="0" draggable="true">Draggable1</div> <div class=&...
毛振华's user avatar
0 votes
1 answer
21 views

Asynchronously filled in table doesn't have any values in the fields

I'm working with a software suite called LaserFiche. I'm trying to force it to do what I want, specifically, I want to put the contents of a hidden table into another table that I'm going to do a ...
Jeffrey Whitney's user avatar
0 votes
1 answer
50 views

jquery UI Calendar date range showing too many months

I have the jquery UI code where i am trying to display 6 months of the current year starting from this months onwards till next 5 months so a total of 6 months, but right now, it goes beyond the those ...
Notion's user avatar
  • 56
0 votes
0 answers
13 views

jQuery UI Selectable how to set default value [duplicate]

I want to select item with id="Today" by default. Here is my HTML: <ol id="selectable_date"> <li id="Today" class="ui-widget-content">Today</li&...
A. Gladkiy's user avatar
  • 3,410
0 votes
1 answer
19 views

Jquery-UI Autocomplete Setting Selected Text As 0

I have a table containing a row of textboxes - Category, Manufacturer and Model. When the user types a value in to the Model field, I want to show an autocomplete box showing similar matches to what ...
Gavin Coates's user avatar
  • 1,425
0 votes
1 answer
32 views

Sortable toArray() occasionally creates list with a duplicate at the end

I want to use a form to let users rank a list of items and store the ranking in a form field called ranking. I am using "Sortable" to and "toArray" for this: <ul id="items&...
Marco Lambrecht's user avatar
1 vote
2 answers
89 views

Bootstrap 5 Bundle and Jquery Spinner issue

I'm facing a problem using Bootstrap 5.3.3 (BS5) bundle with JQuery spinner (for inputs with quantity spinner) - it all works fine however the up and down arrows don't display on the spinner - the ...
Stuart Palmer's user avatar
0 votes
0 answers
26 views

How to use onclick event (jqueryui-selectable)?

When clicked, selected: function(event, ui) { if (!$(ui.selected).hasClass('selected')) { $(ui.selected).addClass('selected'); } else { $(ui.selected).removeClass("ui-...
Lee's user avatar
  • 1
0 votes
0 answers
14 views

jQuery autocomplete doesn't work on dynamically created input text fields? (ajax call included) [duplicate]

I have an input text with id school_name field that I would like to apply jQuery autocomplete on. I managed to make it work making an ajax call and fetch the data and show them as options but ...
pliroforiki's user avatar
0 votes
0 answers
33 views

jQuery beforeunload not working as expected

The implementation of this jQuery function drives me crazy!!! I know there are a lot of articles about it and I have spend hours to read them, but could not find any useful solution! I created a ...
Georgio's user avatar
  • 159
0 votes
0 answers
36 views

Select2 Ajax Response is not binding to HTML properly

I am trying to implement data dropdown using select2. <input id="myInput" /> My JQuery Code $('#myInput').select2({ minimumInputLength: 3, dataType: "...
Gireesh Doddipalli's user avatar
0 votes
0 answers
14 views

Jquery UI draggable and contenteditable conflict

I found that jquery ui draggable event and contenteditable="true" is in conflict. I mean its always draggable and you cant select text to edit. Becuse of that I write a code: $('....
Aleks Per's user avatar
  • 1,629
0 votes
1 answer
34 views

jQuery dialog inside iFrame not running close function

I have a simple jQuery UI Dialog. Everything is working as expected when viewing the page by itself except when that page is in an iframe. For some reason the close: function isn't firing. Everything ...
Viking NM's user avatar
  • 402
0 votes
0 answers
37 views

jQuery UI datepicker month select box opens and closes immediately inside Bootstrap 5.3.3 modal for firefox browser

I've encountered a conflict between Bootstrap's modal and jQuery UI datepicker in firefox browser where I can't use the month select box because something closes it immediately after being open. Steps ...
Irfan khan's user avatar
0 votes
0 answers
38 views

JQuery Autocomplete function is triggering multiple times

I need to set a search bar in my code where it will retrive the data of the products present in the database.Here in the same project they have used the exact code to do the product search I used that ...
Guru1804's user avatar
0 votes
1 answer
70 views

JQuery Datatable is not visible

I have an ASP.NET Core MVC web application written in C#. I created a Razor view and in that view, I show 2 jQuery datatables horizontally and in between these 2 data tables, there are 3 buttons. ...
KitKat's user avatar
  • 59
0 votes
0 answers
39 views

Open Razor View as popup from jquery datatable

I am working with an ASP.NET Core MVC app in C#, where I have a window with jQuery datatable (I am using C# and Visual Studio 2022). In this datatable, I have 4 columns. One of the column is link ...
KitKat's user avatar
  • 59
0 votes
1 answer
68 views

ASP.NET Core MVC jQuery UI

I am very new to ASP.NET Core MVC in C#. I have 2 datagrids or data table in a window arranged horizontally. I have some buttons arranged between the 2 grids. How to create a UI as shown below? Please ...
CKuttan's user avatar
  • 49
0 votes
0 answers
38 views

How can I fixColumn and adjust the content of fixedColumn columns?

Currently I am using a 3rd party datatable library. Here is my configuration when re-rendering the mesh to start loading the input data. _columns: is the list of columns I declared earlier Code: tbl....
Thới Lê Châu's user avatar
0 votes
0 answers
32 views

Jquery and Jquery UI update

i have Jquery 1.9.1 version and Jquery UI 1.10.3 and Require.js 2.1.5 in our currect project. i want update this file into our project i just replace those files into latest files like Jquery 3.7.1 ...
Sunil Suni's user avatar
0 votes
0 answers
29 views

Dynamically inserted html() elements are not click() event functional, non-interactive [duplicate]

I am using jquery-ui dialog to display editable page data and mostly works well except for the page delete process to reload the updated navigation elements. The process occurs in the AJAX success ...
Nadal's user avatar
  • 105
0 votes
1 answer
236 views

How to update the jQuery and jQuery-UI latest version

I AM using jQuery- v1.9.1 and jQueryUI- v1.10.3, but i need to update this as latest version how to update this files. can you please help me to update this file. iam getting some methods as mismatch ...
Sunil Suni's user avatar
1 vote
1 answer
224 views

Updating jquery-ui ASP.NET Core MVC

I would like to update jquery-ui.js in my ASP.NET Core MVC application. I saw that the file is located in the following structure: What is the correct way to do this? Should I just download the file ...
Roxy'Pro's user avatar
  • 4,442
0 votes
1 answer
24 views

Kendo grid not getting displayed

I have a problem rendering a Kendo grid. I have the below code: $(document).ready(function() { $('#searchBtn').click(function(event) { event.preventDefault(); ...
Hisham Gundagi's user avatar
1 vote
0 answers
29 views

How to load data into Kendo grid using ajax call?

I am creating a spring boot application to book flights. I have defined a controller to retrieve flight details from database: @Controller @RequestMapping("/home") public class ...
Hisham Gundagi's user avatar
0 votes
1 answer
41 views

Text Wrap around JQuery Draggable/Resizable Image

I am trying to use JQuery, and want images to be resizable and draggable. I also want the text to wrap around the image (does not have to be real time) when the image is dragged or resized. Right now ...
IAmAnnoyedWithTech's user avatar
0 votes
0 answers
65 views

The dialog box is throwing an error when trying to open a dialog

Trying to create a dialog box with iframe in it, i am getting the following error: $("#dialogFrame").dialog({ autoOpen: false, // Dialog is not shown on page load modal: true, // ...
Smith Jonas's user avatar
0 votes
1 answer
22 views

jQuery UI Dialog flashes when positioned over triggering object

I am trying to use jQuery UI Dialogs to replace the previous javascript tooltip mechanism. Our website has been using WZ_tooltips for many years. WZ_tooltips was created by Walter Zorn in 2002. RIP ...
Jeffrey Simon's user avatar
0 votes
1 answer
26 views

revert to original position a sortable if serverside update doesn't work

My question is a duplicate of this question but the accepted answer contains a fiddle that is no more valid. So I need to ask it again. I am using jquery Sortable to move elems from one list to ...
Lelio Faieta's user avatar
  • 6,638
0 votes
1 answer
44 views

How to implement jQuery UI Datepicker with custom buttons to enhance user interaction and functionality?

<input class="input-class" /> How can I implement a jQuery UI Datepicker with custom buttons for enhanced user interaction? I want to include buttons like "Next", "Next ...
Jacob spartans's user avatar
0 votes
1 answer
71 views

Jquery ui sortable table row with specific static column

I have a problem with jquery sortable on table. My table goes like this: <table> <thead> <th>Number</th> <th>Text</th> <th>Order</th> </...
Lindsay's user avatar
  • 95
0 votes
2 answers
57 views

Getting HTML in input on select in jquery ui autocomplete

I am using jquery ui autocomplete to fetch cars,parts,and services from my database, i am diffrentiating both or three records type by adding span in last. But when i select any value its showing span ...
MR Lappy's user avatar
2 votes
2 answers
176 views

JQuery autocomplete from DB in spring boot and Thymeleaf

this is my template: <!-- JavaScript --> <link rel="stylesheet" href="https://code.jquery.com/ui/1.13.2/themes/base/jquery-ui.css"> <script src="https://...
Nuñito Calzada's user avatar
0 votes
1 answer
22 views

JQuery draggable falling out of sync with cursor when drop zones are revealed

I'm trying to achieve a set up in which dragging a div reveals the drop-zones onto which it can be placed. Trouble is, when a drop zone above the draggable origin is revealed, it pushes the div the ...
Mark Peace's user avatar
0 votes
0 answers
16 views

jQueru Ui autocomlete remote with image

This jQuery Ui Autocomplete code with image works perfectly well, but the image appears on top of the text, I would like the image to appear on the left and text on the right, like the photo. Any ...
tonydeleon's user avatar
-4 votes
1 answer
170 views

How do I position the progress bar around the element that has triggered the task?

I am developing a dynamic website using jQuery which relies heavily on AJAX operations. Whenever an AJAX operation starts, a progress bar is shown which I have positioned in the middle of the web page....
owino's user avatar
  • 153
0 votes
0 answers
19 views

Jquery autopopulate not displaying

Auto suggest is getting the response but unable to display properly. I ma tying to follow example at https://mkyong.com/spring-mvc/spring-mvc-jquery-autocomplete-example/ - this is working fine as I ...
user3067524's user avatar
0 votes
0 answers
23 views

jQuery plugin is not shown

thanks in advance for all support. I started to learn writing a jQuery plugin. Progressbar from JQuery UI is in use. But I never see a progressbar. startProgressBar.jquery.plugin.js: (function($){ $....
ReMadWeb's user avatar
0 votes
0 answers
31 views

How to upgrade blueimp jquery file upload to use jquery-widget 1.13

We are aiming to upgrade our jQuery UI to version 13.1 due to security concerns arising from known vulnerabilities in the previous version. However, we've encountered an obstacle: even with the latest ...
stuckinreverse's user avatar
0 votes
0 answers
31 views

Set value JQUERY UI Slider with LeaFlet map

im willing to modify the time value of the Leaflet TimeSlider plugin, i have this plugin that i modified so i can see in locale format. https://github.com/carlosign/LeafletSlider-LocalTime/blob/master/...
Carlos Char's user avatar
0 votes
1 answer
79 views

trying to delete existing tabs which were dynamically added

Here i am in a situtation where i am trying to add the dynamic tabs to the existing tabs but also if that link or popup is agai opened, i am trying to make sure it does not duplicate the tabs, my ...
Smith Jonas's user avatar
0 votes
0 answers
24 views

Angular.js directive does not work for uib-tooltip

I am struggeling with uib-tooltip. I would like to add there 'tooltip-popup-delav' using a directive. export function UibTooltipDelay(): ng.IDirective { 'ngInject'; return { restrict: 'A', link: ...
aKa's user avatar
  • 19

1
2 3 4 5
794