All Questions
31,274 questions
0
votes
1
answer
46
views
Jquery hide or show text field based on radio button selection [closed]
I have the following code to display text box based on radio button selection. This does not work however. How to make this code work?
I want the text box field to show if useDockerCompose is chosen ...
-1
votes
2
answers
64
views
Prop hidden() or hide() and show() can't used in Select2 Multiple Option
I want to ask about select2. I want, when I choose the option it will be hidden from the options in the select. And also if we remove it in multiple select option, it will be showed too in the option. ...
0
votes
1
answer
19
views
Draggable slider for touch devices
var reachedLast = false;
var reachedFirst = false;
jQuery("#gbar").draggable({
axis: "x",
containment: "parent",
drag: function (event, ui) {
var ...
0
votes
0
answers
25
views
ASP.NET MVC : jQuery datepicker inside bootstrap modal
I am stuck on a strange issue, I have a jQuery datepicker inside a Bootstrap modal popup. It works fine for some browser resolution, but not for all. This is how I resolved it, but I want some more ...
0
votes
1
answer
42
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 ...
2
votes
2
answers
79
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 ...
1
vote
1
answer
76
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 ...
1
vote
1
answer
64
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 ...
0
votes
0
answers
25
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 {
...
0
votes
1
answer
43
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=&...
0
votes
1
answer
24
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 ...
0
votes
1
answer
56
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 ...
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&...
1
vote
2
answers
176
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 ...
0
votes
0
answers
27
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-...