Skip to content

Instantly share code, notes, and snippets.

@abdelilah
abdelilah / zend_countries.php
Created December 7, 2012 16:09
Zend Countries List
$countryArray = Zend_Locale::getTranslationList('Territory','fr_FR',2);
asort($countryArray);
@abdelilah
abdelilah / combobox.js
Created October 18, 2012 10:45
jQuery Combobox
(function( $ ) {
$.widget( "ui.combobox", {
_create: function() {
var input,
that = this,
select = this.element.hide(),
selected = select.children( ":selected" ),
value = selected.val() ? selected.text() : "",
wrapper = this.wrapper = $( "<span>" )
.addClass( "ui-combobox" )
@abdelilah
abdelilah / gist:3838898
Created October 5, 2012 09:23
HTML5 Starting template
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" href="/favicon.png" />
<title>The Title</title>
</head>