Skip to content

Instantly share code, notes, and snippets.

View sanglt's full-sized avatar
🎯
Focusing

Sang Lê sanglt

🎯
Focusing
View GitHub Profile
<?php
echo implode(', ', range('a', 'z'));
echo '<br />';
echo implode(', ', range('A', 'Z'));
/**
* Create basic jQuery plugin
*/
(function ($) {
$.fn.myPlugin = function (options) {
return this.each(function () {
// Do stuff
});
}
})(jQuery);
(function ($) {
Drupal.behaviors.myModule = {
attach: function (context) {
// Code ...
}
}
})(jQuery);