All Questions
Tagged with jquery-events javascript
4,181 questions
1
vote
1
answer
97
views
Datepicker not refreshing data
I´ve been trying to solve a problem I´m having beeing it the next one:
I have 2 datepickers:
Delivery Date Picker:
<div class="input-group date form_datetime times" id="date_entrega&...
0
votes
2
answers
515
views
jQuery click event not fired when element clicked
I've seen this question asked and answered before but after trying several proposed solutions I still haven't had any luck.
I have four buttons ( respectively with IDs "frst, prev, next, last,&...
0
votes
0
answers
88
views
How to fix icons not displaying at first load?
**Problem
**
I have built an mobile repair website with a custom repair module where customers can select a type of device, brand and a repair. When he wants to register a repair he goes in the nav-...
0
votes
3
answers
65
views
Unable to Detect Change on Dynamically Generated Checkboxes
Description:
I'm facing an issue where dynamically generated checkboxes are not triggering the change event when clicked. To address this, I used $(document).on("change", ".integration-...
1
vote
0
answers
44
views
SignalR JS Events not Firing
Bit of a strange one this, I have signalR installed and I am getting all the network messages (by examining them with chrome dev tools), even the 'ping / pong' messages keeping the connection alive, ...
0
votes
1
answer
230
views
How to add keypress event on option element?
I am trying to add an event listener to option elements of particular select elements. But it's not working.
HTML:
<form id='form1' method='post' name='form1'>
<select class="form-...
0
votes
1
answer
63
views
How to fire click event that was attached later before click event attached earlier via jQuery?
//First click handler added via a plugin whose files I do not wish to change
jQuery('.element').click(function(){
console.log('click event 1');
});
//2nd click handler - need this to be executed ...
0
votes
1
answer
99
views
Children Buttons not executing JS when clicked. Click registers and executes JS for parent div
I have a group of buttons that do not console.log when they are clicked. They are nested within a few divs and have been appended through another function. When the .finger buttons are clicked, they ...
1
vote
1
answer
77
views
Why is my jQuery event listener not running upon app startup?
I'm working on making a script that detects if a checkbox with id "chapterex" is checked, and updates the page accordingly if it is: if it is not checked, add the multiple attribute to the ...
0
votes
1
answer
93
views
Change image on click then back to original image on another image click/html jscript
First of all, I have basically no knowledge on how to write JavaScript, so my problem might be quite simple to answer, but I've done some research and I didn't find anything yet.
I'd like to know how ...
0
votes
2
answers
711
views
Why is the mousedown event getting rid of my click event?
I am having an issue where my click event in a specific case is not being called. I can explain better using this example in the fiddle. I have also pasted the code below.
https://jsfiddle.net/...
0
votes
1
answer
1k
views
How to export multiple datatables into PDF, into a single zipped folder
I have a solution in a system for group reporting where I have a selected number of datatables rendered out of view and I provide download links to each table, i.e.:
let singlePDFdownload = function (...
-1
votes
1
answer
48
views
Prevent calling global function for each same element on the same page when 'click' event is invoked
I encountered a problem having two buttons removeButton with the same selector $("div[data-lookup-entity-type=some_type] .js-lookup-clear");on a page.
So when I am clicking on 'X' (clear) ...
0
votes
2
answers
53
views
Localstorage - rewrite from JS to Jquery
I'm working on a portfolio project - which should use jquery - part of the task is to set and get text via localstorage - which I can do in Javascript but I breaks when attempting to refactor in ...
0
votes
1
answer
97
views
Change DIV background when child input field is selected
I have multiple DIV radio buttons and would like to have the background (or class) change to blue if the the child input is changed and if I select other option of the same name group, the background ...