Heapbox
jQuery <selectbox> replacement
Install / Use
/learn @FilipBartos/HeapboxREADME
<h1>HeapBox - jQuery <selectbox> (not only) replacement</h1>
HeapBox is plugin for jQuery that replace native HTML selectboxes in your webpages. HeapBox supports themes, events, callbacks, ajax and much more. See more at <a href="https://is.gd/1GdRnV" title="HeapBox">heapbox website</a>.
<h2>Quick install</h2>
Include the jquery and heapbox in your head:
<pre> <script src="js/jquery.js" type="text/javascript"></script> <script src="js/heapbox.js" type="text/javascript"></script> </pre>Include one chosen heapbox theme style:
<pre> <link rel="stylesheet" href="themes/dark/css/dark.css" type="text/css" media="screen" /> </pre>Create selectbox:
<pre> <select id="mySelect"> <option value="value1">Value 1</option> <option value="value2">Value 2</option> </select> </pre>Init heapbox:
<pre> $("#mySelect").heapbox(); </pre> <h2>Using</h2>Basic heapbox without any configuration.
<pre> $("#mySelect1").heapbox(); </pre>See more examples at <a href="https://is.gd/1GdRnV" title="HeapBox">HeapBox website</a>.
<h2>About</h2>Heapbox is created by <a href="http://www.bartos.me" title="Filip Bartos">Filip Bartos</a> and is licensed under <a href="http://drop.bartos.me/data/projects/heapbox/LICENSE" title="MIT LICENSE">MIT</a>.
