Click here to Skip to main content
15,887,984 members
Home / Discussions / JavaScript
   

JavaScript

 
AnswerRe: How to fetch unchecked checkbox value Pin
Richard Deeming16-Mar-18 2:50
mveRichard Deeming16-Mar-18 2:50 
AnswerRe: How to fetch unchecked checkbox value Pin
F-ES Sitecore22-Mar-18 6:58
professionalF-ES Sitecore22-Mar-18 6:58 
PraiseRe: How to fetch unchecked checkbox value Pin
Richard Deeming22-Mar-18 9:14
mveRichard Deeming22-Mar-18 9:14 
GeneralRe: How to fetch unchecked checkbox value Pin
F-ES Sitecore22-Mar-18 23:15
professionalF-ES Sitecore22-Mar-18 23:15 
QuestiontoggleClass and hasClass Pin
VK1915-Mar-18 4:31
VK1915-Mar-18 4:31 
AnswerRe: toggleClass and hasClass Pin
Richard Deeming15-Mar-18 6:35
mveRichard Deeming15-Mar-18 6:35 
GeneralRe: toggleClass and hasClass Pin
VK1915-Mar-18 7:56
VK1915-Mar-18 7:56 
GeneralRe: toggleClass and hasClass Pin
Richard Deeming15-Mar-18 8:03
mveRichard Deeming15-Mar-18 8:03 
Try adding an alert("Click!"); at the start of the function to make sure it's being called.

Is the button causing the page to post back to the server? You might need to prevent the default action from happening:
JavaScript
$("#SelectAll").click(function (e) {
    e.preventDefault();
    ...




"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer


GeneralRe: toggleClass and hasClass Pin
VK1915-Mar-18 8:42
VK1915-Mar-18 8:42 
GeneralRe: toggleClass and hasClass Pin
Richard Deeming15-Mar-18 8:45
mveRichard Deeming15-Mar-18 8:45 
GeneralRe: toggleClass and hasClass Pin
ZurdoDev15-Mar-18 10:25
professionalZurdoDev15-Mar-18 10:25 
QuestionNo JavaScript! Pin
Member 137103915-Mar-18 13:17
Member 137103915-Mar-18 13:17 
AnswerRe: No JavaScript! Pin
Richard MacCutchan5-Mar-18 21:44
mveRichard MacCutchan5-Mar-18 21:44 
GeneralRe: No JavaScript! Pin
Nitin S28-Jun-18 1:23
professionalNitin S28-Jun-18 1:23 
QuestionWhat does ".then" mean in JavaScript? Pin
Xarzu22-Feb-18 14:27
Xarzu22-Feb-18 14:27 
AnswerRe: What does ".then" mean in JavaScript? Pin
Richard MacCutchan22-Feb-18 22:09
mveRichard MacCutchan22-Feb-18 22:09 
AnswerRe: What does ".then" mean in JavaScript? Pin
Richard Deeming23-Feb-18 0:58
mveRichard Deeming23-Feb-18 0:58 
QuestionHow do I make a pop-up window in JavaScript? Pin
Xarzu21-Feb-18 12:34
Xarzu21-Feb-18 12:34 
AnswerRe: How do I make a pop-up window in JavaScript? Pin
Peter_in_278021-Feb-18 17:16
professionalPeter_in_278021-Feb-18 17:16 
AnswerRe: How do I make a pop-up window in JavaScript? Pin
Richard Deeming22-Feb-18 0:40
mveRichard Deeming22-Feb-18 0:40 
Questionhow to add col dynamically using js and html Pin
Member 1368695921-Feb-18 1:03
Member 1368695921-Feb-18 1:03 
AnswerRe: how to add col dynamically using js and html Pin
Richard MacCutchan21-Feb-18 2:03
mveRichard MacCutchan21-Feb-18 2:03 
AnswerRe: how to add col dynamically using js and html Pin
ZurdoDev21-Feb-18 9:02
professionalZurdoDev21-Feb-18 9:02 
QuestionUsing JQuery on and off for events Pin
jkirkerx20-Feb-18 13:17
professionaljkirkerx20-Feb-18 13:17 
AnswerRe: Using JQuery on and off for events Pin
Richard Deeming21-Feb-18 8:07
mveRichard Deeming21-Feb-18 8:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.