18 questions from the last 30 days
-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 ...
1
vote
0
answers
17
views
Jql change track
I want to showcase count of tickets improvement in last 4 months for a particular label. How to query for it. Eg- count of tickets with 'Compliance' label for OND quarter were 5,15,21 respectively--- ...
1
vote
2
answers
101
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 ...
-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 ...
-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 ...
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 ...
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
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 ...
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) ...
0
votes
0
answers
101
views
How to Prevent Auto-Scroll During Streaming When User Manually Scrolls Up?
I'm building a chat interface where AI responses are streamed chunk by chunk (similar to ChatGPT). The current implementation automatically scrolls to the bottom as each chunk arrives, which works ...
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);
});
$("#...
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 ...
-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 ...
-3
votes
0
answers
44
views
data- attribute leaves data visible in html element [duplicate]
I have an input in my jsp which gets userInfo from a ModelAndView object.
<input value="Submit" name="proceed" type="button" id="btnSubmit" class="btn ...
-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: &...