Skip to content

Instantly share code, notes, and snippets.

View tamizhvendan's full-sized avatar
🙋‍♂️
The code is not the goal. Solving the problem is!

Tamizhvendan S tamizhvendan

🙋‍♂️
The code is not the goal. Solving the problem is!
View GitHub Profile
@tamizhvendan
tamizhvendan / 0_reuse_code.js
Created October 17, 2013 14:15
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@tamizhvendan
tamizhvendan / iGoogle-Sample-Fixed-Widgets.html
Created October 5, 2012 07:36
Sample iGoogle Page with Fixed widgets
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Sample iGoogle Page</title>
<style type="text/css">
/* Entire Page has been divided into 3Columns.
Note: iGoogle Page has 3 columns */
@tamizhvendan
tamizhvendan / iGoogle-Sample.html
Created September 5, 2012 07:18
Sample iGoogle Page
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Sample iGoogle Page</title>
<style type="text/css">
/* Entire Page has been divided into 3Columns.
Note: iGoogle Page has 3 columns */
@tamizhvendan
tamizhvendan / ReadableReadyEventHandler.js
Created March 27, 2012 01:16
A Readable jQuery Ready Event Handler
$(function () {
var $warningDialog = $("#warning"),
openDialog = function () {
$warningDialog.dialog("open");
},
closeDialog = function () {
$warningDialog.dialog("close");