Based on w3schools
JS Arrays
JS Array Methods
JS Booleans
JS Comparisons
JS Conditions
JS Switch
Based on w3schools
JS Arrays
JS Array Methods
JS Booleans
JS Comparisons
JS Conditions
JS Switch
Based on w3schools
JS Loop For
JS Loop While
JS Break
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title></title> | |
| <script> | |
| o = new Object(); | |
| o.prop = 'exists'; | |
| function changeO() { | |
| o.newprop = o.prop; |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>jQuery Test page</title> | |
| <script type="text/javascript" src="libs/jQuery/jquery-2.1.0.js"></script> | |
| <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"> | |
| <script> | |
| if (typeof jQuery != 'undefined') { | |
| console.log(jQuery.fn.jquery); |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Remove particular class only using jQuery</title> | |
| <script type="text/javascript" src="libs/jQuery/jquery-2.1.0.js"></script> | |
| <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"> | |
| <script> | |
| if (typeof jQuery != 'undefined') { | |
| console.log(jQuery.fn.jquery); |
#TATKAL
11064 - Salem Chennai Express
June 26 2017 Monday
ATU (Attur) to TBM (Tambaram)
Sivaprabu G 32 Naveena G 27
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title></title> | |
| </head> | |
| <body> | |
| <form name="redirect"> | |
| <center> |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <title>Bootstrap Example</title> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"> | |
| <link rel="stylesheet" href="http://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css"> | |
| <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Check/Un Check all check boxes in a page using jQuery</title> | |
| <script type="text/javascript" src="libs/jQuery/jquery-2.1.0.js"></script> | |
| <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"> | |
| <script> | |
| if (typeof jQuery != 'undefined') { | |
| console.log(jQuery.fn.jquery); |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title></title> | |
| </head> | |
| <body> | |
| <script type="text/javascript"> | |
| function fullName(firstName, lastName, callback) { |