Click here to Skip to main content
15,888,286 members
Home / Discussions / JavaScript
   

JavaScript

 
AnswerRe: Using JQuery on and off for events Pin
Richard Deeming21-Feb-18 8:07
mveRichard Deeming21-Feb-18 8:07 
GeneralRe: Using JQuery on and off for events Pin
jkirkerx22-Feb-18 7:31
professionaljkirkerx22-Feb-18 7:31 
Questionnodejs and WSDL Pin
dfgdsgjghiouyiouyol19-Feb-18 0:43
dfgdsgjghiouyiouyol19-Feb-18 0:43 
Question(NodeJS) ejs ignoring if statement if a css class is added to the element Pin
random_xyz12-Feb-18 5:08
random_xyz12-Feb-18 5:08 
QuestionJquery: How to conditionally attach/detach bootstrap datepicker with textbox Pin
Mou_kol7-Feb-18 8:17
Mou_kol7-Feb-18 8:17 
AnswerRe: Jquery: How to conditionally attach/detach bootstrap datepicker with textbox Pin
Mou_kol7-Feb-18 8:22
Mou_kol7-Feb-18 8:22 
Questionjquery addClass and removeClass not working Pin
Mou_kol5-Feb-18 22:47
Mou_kol5-Feb-18 22:47 
AnswerRe: jquery addClass and removeClass not working Pin
Richard Deeming6-Feb-18 2:29
mveRichard Deeming6-Feb-18 2:29 
JavaScript
// Set the initial row class if it isn't set in the markup:
$("#gridId tr").addClass("norRow").removeClass("bgRow");

function setBG() {
    $("#gridId tr").toggleClass("bgRow norRow");
    setTimeout(setBG, 1000);
}

setTimeout(setBG, 1000);

highlight table row with css - JSFiddle[^]
.toggleClass() | jQuery API Documentation[^]

Alternatively, drop the script and use a CSS animation. For example:
CSS
tr {
  animation: pulse 1s infinite alternate;
}

@keyframes pulse {
  0% {
    background-color: Green;
  }
  100% {
    background-color: Silver;
  }
}

highlight table row with css - JSFiddle[^]
Using CSS animations - CSS | MDN[^]



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


GeneralRe: jquery addClass and removeClass not working Pin
Mou_kol6-Feb-18 2:45
Mou_kol6-Feb-18 2:45 
GeneralRe: jquery addClass and removeClass not working Pin
Richard Deeming6-Feb-18 2:54
mveRichard Deeming6-Feb-18 2:54 
GeneralRe: jquery addClass and removeClass not working Pin
Mou_kol7-Feb-18 20:43
Mou_kol7-Feb-18 20:43 
GeneralRe: jquery addClass and removeClass not working Pin
Richard Deeming8-Feb-18 0:51
mveRichard Deeming8-Feb-18 0:51 
GeneralRe: jquery addClass and removeClass not working Pin
Mou_kol8-Feb-18 1:18
Mou_kol8-Feb-18 1:18 
GeneralRe: jquery addClass and removeClass not working Pin
Richard Deeming8-Feb-18 1:23
mveRichard Deeming8-Feb-18 1:23 
QuestionAutomatic calculation of Days and Filling of Months, Year Pin
Kiran Kumar31-Jan-18 9:13
Kiran Kumar31-Jan-18 9:13 
AnswerRe: Automatic calculation of Days and Filling of Months, Year Pin
F-ES Sitecore1-Feb-18 0:12
professionalF-ES Sitecore1-Feb-18 0:12 
QuestionEdit an Embed COde Api to implement on a website Pin
Member 1363973526-Jan-18 18:32
Member 1363973526-Jan-18 18:32 
Rant[REPOST] Edit an Embed COde Api to implement on a website Pin
Richard Deeming29-Jan-18 10:37
mveRichard Deeming29-Jan-18 10:37 
QuestionHow to open a java script in a android phone Pin
Member 1361672010-Jan-18 9:07
Member 1361672010-Jan-18 9:07 
AnswerRe: How to open a java script in a android phone Pin
debasish mishra23-Jan-18 19:09
professionaldebasish mishra23-Jan-18 19:09 
Questioni need fileration of html table and pagenation using Jquery or javascript but should support by IE8 Pin
irfankundi78631-Dec-17 6:37
irfankundi78631-Dec-17 6:37 
AnswerRe: i need fileration of html table and pagenation using Jquery or javascript but should support by IE8 Pin
Richard Deeming8-Jan-18 6:51
mveRichard Deeming8-Jan-18 6:51 
Questionjavascript code to disable window button in html page?? Pin
LOKENDRA YADAV29-Dec-17 22:14
LOKENDRA YADAV29-Dec-17 22:14 
AnswerRe: javascript code to disable window button in html page?? Pin
Richard MacCutchan30-Dec-17 21:43
mveRichard MacCutchan30-Dec-17 21:43 
AnswerRe: javascript code to disable window button in html page?? Pin
Vincent Maverick Durano3-Jan-18 19:44
professionalVincent Maverick Durano3-Jan-18 19:44 

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.