Skip to content

Instantly share code, notes, and snippets.

View sivaprabug's full-sized avatar
🌴
On vacation

Sivaprabu Ganesan sivaprabug

🌴
On vacation
View GitHub Profile

Based on w3schools

Covered Topics

JS Arrays
JS Array Methods
JS Booleans
JS Comparisons
JS Conditions
JS Switch

Based on w3schools

Covered Topics

JS Loop For
JS Loop While
JS Break

Basic Questions

@sivaprabug
sivaprabug / hasOwnProperty.html
Last active March 10, 2016 10:33
check hasOwnProperty in Javascript Class
<!DOCTYPE html>
<html>
<head>
<title></title>
<script>
o = new Object();
o.prop = 'exists';
function changeO() {
o.newprop = o.prop;
@sivaprabug
sivaprabug / checkBoxValueStoredInLocalStorage.html
Last active March 15, 2016 09:43
Checkbox value stored in local storage
<!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);
@sivaprabug
sivaprabug / Remove particular class only using jQuery.html
Created March 25, 2016 12:58
Remove particular class only using 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);
@sivaprabug
sivaprabug / Tickets.md
Last active February 24, 2017 04:35
Train Ticket

#TATKAL

11064 - Salem Chennai Express

June 26 2017 Monday

ATU (Attur) to TBM (Tambaram)

Sivaprabu G 32 Naveena G 27

@sivaprabug
sivaprabug / countdown_redirection.html
Created May 4, 2016 13:45
Javascript countdown redirect to another page
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<form name="redirect">
<center>
@sivaprabug
sivaprabug / bootstrap_toolTip_customize.html
Last active May 13, 2016 09:17
Bootstrap Tooltips Inside icons and links
<!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>
@sivaprabug
sivaprabug / index.html
Created June 3, 2016 12:25
Check/Un Check all check boxes in a page using jQuery
<!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);
@sivaprabug
sivaprabug / index.html
Last active June 6, 2016 10:40
Javascript call() apply() bind() methods
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<script type="text/javascript">
function fullName(firstName, lastName, callback) {