Please see: https://github.com/kevinSuttle/html-meta-tags, thanks for the idea @dandv!
Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/
01. <!DOCTYPE> | |
02. lang="…" | |
03. <title="…" /> | |
04. <link rel="…" /* home, next, prev… */ | |
05. skip to #main-content link | |
06. visual check /* color blindness */ | |
07. NO "javascript:" links | |
08. <a href="…" title="…"> | |
09. accesskey="…" /* samples below */ | |
10. NO <a href="…" target="_blank"> |
.visible-android { | |
display:none; | |
} | |
.visible-ios { | |
display:none; | |
} | |
.on-device .visible-android, .on-device .visible-android { | |
display:inherit; | |
} | |
.device-ios .visible-android { |
/* If you've ever had the need to link directly to an open modal window with Bootstrap, here's a quick and easy way to do it: | |
Make sure your modal has an id: | |
<div class="modal" id="myModal" ... > | |
Then stick this bit of Javascript at at the end of your document: | |
*/ | |
$(document).ready(function() { |