Skip to content

Instantly share code, notes, and snippets.

@bmarshall511
Created August 20, 2014 02:33
Show Gist options
  • Select an option

  • Save bmarshall511/6b34669ad3574684ebbf to your computer and use it in GitHub Desktop.

Select an option

Save bmarshall511/6b34669ad3574684ebbf to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Coding Deliciously Styled Dropdown Select Lists | A Demo by Ben Marshall</title>
<link rel="stylesheet" href="assets/css/styles.css">
</head>
<body>
<form method="post" action="#">
<select name="prettyfied" class="prettyfied">
<option value="0" selected="selected">Choose a Prettyfied Element</option>
<option value="1" data-icon="assets/img/icon.png" data-html-text="Element One&lt;i&gt;don't pick me!&lt;/i&gt;">Element One</option>
<option value="2" data-icon="assets/img/icon.png" data-html-text="Element Two&lt;i&gt;second's the best&lt;/i&gt;">Element Two</option>
<option value="3" data-icon="assets/img/icon.png" data-html-text="Element Three&lt;i&gt;i smell, but friendly&lt;/i&gt;">Element Three</option>
<option value="4" data-icon="assets/img/icon.png" data-html-text="Element Four&lt;i&gt;go for the underdog&lt;/i&gt;">Element Four</option>
</select>
<select name="prettyfied2" class="prettyfied">
<option value="0">Choose a Prettyfied Element</option>
<option value="1" selected="selected" data-icon="assets/img/icon.png" data-html-text="Element One&lt;i&gt;don't pick me!&lt;/i&gt;">Element One</option>
<option value="2" data-icon="assets/img/icon.png" data-html-text="Element Two&lt;i&gt;second's the best&lt;/i&gt;">Element Two</option>
<option value="3" data-icon="assets/img/icon.png" data-html-text="Element Three&lt;i&gt;i smell, but friendly&lt;/i&gt;">Element Three</option>
<option value="4" data-icon="assets/img/icon.png" data-html-text="Element Four&lt;i&gt;go for the underdog&lt;/i&gt;">Element Four</option>
</select>
</form>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js"></script>
<script src="assets/js/script.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment