Example HTML Snippets

Popup Box

Here is the HTML:

  1. for popping up an info box
  2.  
  3. simple usage:
  4. <a href="http://ashi-staging.com/au-soleil-healing-practitioner-levels-popup" onclick='return tf_popit(this.href)'>click here</a>
  5.  
  6. fancy example usage (including Bootstrap glyphicon instead of text link and spans so glyph wont get orphaned on a line by it's own):
  7.  
  8. <span style="white-space:nowrap"> 
  9. <a href="http://ashi-staging.com/au-soleil-healing-practitioner-levels-popup" onclick='return tf_popit(this.href)'>
  10. <span class="glyphicon glyphicon-question-sign poppy">
  11. </span>
  12. </a>
  13. </span>
for popping up an info box

simple usage:
<a href="http://ashi-staging.com/au-soleil-healing-practitioner-levels-popup" onclick='return tf_popit(this.href)'>click here</a>

fancy example usage (including Bootstrap glyphicon instead of text link and spans so glyph wont get orphaned on a line by it's own):

<span style="white-space:nowrap"> 
<a href="http://ashi-staging.com/au-soleil-healing-practitioner-levels-popup" onclick='return tf_popit(this.href)'>
<span class="glyphicon glyphicon-question-sign poppy">
</span>
</a>
</span>