Skip to content

Instantly share code, notes, and snippets.

View AkdM's full-sized avatar
👋

Anthony Da Mota AkdM

👋
View GitHub Profile
@AkdM
AkdM / myfile.html
Last active July 21, 2020 13:30
Dynamically populate dropdowns with JSON and jQuery
<label>Country:</label>
<select id="country" name="country">
<option value="000">-Select Country-</option>
</select>
<br />
<label>State:</label>
<select id="state" name="state">
<option value="000">-Select State-</option>
@AkdM
AkdM / CSSFrameworks.md
Last active August 9, 2018 21:12
CSS frameworks.md
@AkdM
AkdM / Key Binding - User.json
Created May 30, 2013 08:28
My (old) Sublime Text Configuration
[
{ "keys": ["super+alt+7"], "command": "encode_html_entities" },
{ "keys": ["shift+ctrl+u"], "command": "title_case" },
{ "keys": ["super+enter"], "command": "insert", "args": {"characters": "<br>\n"} },
{ "keys": ["super+alt+l"], "command": "insert_snippet", "args": {"contents": "<li>${0:$SELECTION}</li>" } },
{ "keys": ["super+alt+b"], "command": "insert_snippet", "args": {"contents": "<b>${0:$SELECTION}</b>" } },
{ "keys": ["super+alt+i"], "command": "insert_snippet", "args": {"contents": "<i>${0:$SELECTION}</i>" } },
{ "keys": ["super+alt+n"], "command": "insert_snippet", "args": {"contents": "<span>${0:$SELECTION}</span>" } },
{ "keys": ["super+alt+down"], "command": "insert_snippet", "args": {"contents": "<sub>${0:$SELECTION}</sub>" } },