18 questions from the last 30 days
-1
votes
2
answers
145
views
How to replace deprecated jquery $.proxy
I am having trouble with rewriting .proxy in jquery to Function.prototype.bind because .bind does not set guid on the bound function instances so that proxied event handlers can be removed without ...
0
votes
1
answer
189
views
Why does SVG tag make other elements invisible when the HTML page is loaded?
I am working on a template composed of pure HTML, JavaScript (using jQuery and Slick libraries), and CSS. Note: I am not using any common frameworks aside from Bootstrap.
This is the part of the <...
3
votes
1
answer
72
views
How to access the value of a reactive output inside the browser console with jQuery?
I have an app that uses a conditionalPanel that relies on a reactive value. Here's a basic example:
library(shiny)
ui <- fluidPage(
fluidRow(
actionButton("button1", label = "...
1
vote
2
answers
102
views
Add another javascript dropdown submenu
I have a dropdown menu on my Wordpress website that adds submenu items and it's categories into a dropdown menu. This works for one menu-item, with the help of that #id class. Now i can't get it ...
2
votes
1
answer
95
views
Reduce logical pattern repetition for minDate and maxDate from Bootstrap DateTimePicker
The following logical pattern repeats several times:
$("#dt_start").on("dp.change", function (e) {
$('#dt_end').data("DateTimePicker").minDate(e.date);
});
$("#...
-1
votes
0
answers
122
views
How to transfer the document area width and hight to my php code [closed]
I have been reading previous posts about the difference of server and browser execution and found a way to read the document area hight and width in order to use it to scale a horizontal bar graph ...
0
votes
0
answers
103
views
Ajax queries failing and then succeding on retry with prefilter
I have a jquery based functionality that prefilters all ajax queries so it can intercept 401 requests and refresh api authorization.
I used to use a function that simply checks for a 401, refreshes ...
-3
votes
0
answers
59
views
how do i display a message if nothing is found in the search filter of a table [closed]
I would like a message to appear saying there are no more items to display when the table filter has been run, so if the count val is zero the this additional message must also appear. Here is my code ...
2
votes
1
answer
75
views
Conflict between selectableRange and rowSelection: Clicking checkbox deselects other rows
I am using Tabulator (v6.3) and facing a conflict between the selectableRange module and the rowSelection formatter (checkbox).
The Goal: I want to use Excel-like range selection (selectableRange: 1) ...
3
votes
1
answer
50
views
How to reorder Corpus+LLM chat bubbles in the correct order?
I'm writing a generative AI Corpus and AI Vocal Analysis tool that is for training peoples voice and giving feedback. I'm using qwen4b-instruct as an LLM and have prompted it really good however my ...
0
votes
1
answer
58
views
ASP.NET WebForms still loads old jQuery from ScriptResource.axd after upgrading to jQuery 3.7.1
Our security team flagged an issue indicating that an older jQuery version appeared to be loaded in our application.(ScriptResource.axd)
I am working on an ASP.NET WebForms (.NET Framework) ...
-2
votes
0
answers
53
views
jquery array returns empty result [duplicate]
I have the following which creates an array (of sorts!):
var combined = [];
function slides(){
$.ajax({
type: "GET",
url: '../queries/get_all_slides.php',
cache: false,
dataType: &...
1
vote
0
answers
39
views
centering a >100%-width jQuery dataTable with fixed-width columns
jQuery 3.7.1 dataTables 2.3.5 boostrap 3
Trying to get a dataTable initially hidden on a boostrap tab to 1) center horizontally on the tab and 2) fix the widths of the columns. dataTables 2.3.5 is ...
-3
votes
0
answers
39
views
How to focus using Jquery Timepicker [closed]
I am using Jquery Timepicker and am validating the field
If the validation fails I want to focus on that field, but the code I have so far does nothing. Nothing else I have tried has worked either so ...
0
votes
0
answers
56
views
Redirect to admin page problem. Using node.js with jquery
$('#loginForm').on('submit', function (e) {
e.preventDefault();
const username = $('#username').val();
const password = $('#password').val();
$.ajax({
url: '/login',
...