Skip to content

Instantly share code, notes, and snippets.

@partkyle
Created November 18, 2011 08:44
Show Gist options
  • Save partkyle/1375934 to your computer and use it in GitHub Desktop.
Save partkyle/1375934 to your computer and use it in GitHub Desktop.
$('test').click(function ()
{
//this is the code here
}
);
$('test').click(function ()
{
//this is the code here
});
$('test').click(function ()
{
//this is the code here
});
$('test').click(function ()
{
//this is the code here
}
);
$('test')
.bind(
'click',
function()
{
}
);
$('test').click(function () {
});
function function_name (argument) {
// body...
}
function function_name (argument)
{
// body...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment