<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.3.min.js" ></script>
<script>
$(document).ready(function (){
$('.arrowlistmenu ul li:has("div")').find('h3');
$('.arrowlistmenu ul li:has("div")').find('div.hide').hide();
$('.arrowlistmenu li:has("div")').find('h3').click (function (){
$(this).parent('li').find('span:first').toggleClass();
$(this).parent('li').find('div:first').slideToggle();
});
});
</script>
<title>Untitled Document</title>
</head>
<body>
<div class="arrowlistmenu">
<ul>
<li>
<h3 class="menuheader"><a href="staples.html">FOOD & GROCERY</a></h3>
<div class="hide">
<ul class="categoryitems">
<li><a href="staples.html" style="color:#cf1519;">STAPLES</a></li>
<li><a href="Packaged_food.html">PACKAGED FOOD</a></li>
<li><a href="beverages.html">BEVERAGES</a></li>
<li><a href="dairy.html">DAIRY</a></li>
<li><a href="bakery.html">BAKERY & DELI</a></li>
<li><a href="non_veg.html">NON VEG</a></li>
<li><a href="fruits_vegetables.html">FRUITS & VEGETABLES</a></li>
<li><a href="frozen.html">FROZEN</a></li>
</ul>
</div>
</li>
<li>
<h3 class="menuheader">PERSONAL & HOME CARE</h3>
<div class="hide">
<ul class="categoryitems">
<li><a href="personal_homecare.html">CLEANING AIDS</a></li>
<li><a href="health.html">HEALTH & BEAUTY</a></li>
</ul>
</div>
</li>
<li>
<h3 class="menuheader">HOME & KITCHEN NEEDS</h3>
<div class="hide">
<ul class="categoryitems">
<li><a href="home_kitchen.html">KITCHENWARE</a></li>
<li><a href="electronic.html">ELECTRONICS</a></li>
<li><a href="home_decor.html">HOME DECOR</a></li>
<li><a href="luggage.html">LUGGAGE</a></li>
<li><a href="toys.html">TOYS</a></li>
<li><a href="stationery.html">STATIONERY</a></li>
</ul>
</div>
</li>
<li>
<h3 class="menuheader">FASHION & ACCESSORIES</h3>
<div class="hide">
<ul class="categoryitems">
<li><a href="menswear.html">MEN'S WEAR</a></li>
<li><a href="womenswear.html">WOMEN'S WEAR</a></li>
<li><a href="kidswear.html">KID'S WEAR</a></li>
<li><a href="accessories.html">ACCESSORIES</a></li>
<li><a href="footwear.html">FOOTWEAR</a></li>
</ul>
</div>
</li>
<li>
<h3 class="menuheader">STAR BAZAAR BRANDS</h3>
<div class="hide">
<ul class="categoryitems">
<li><a href="our_products.html">OUR PRODUCTS</a></li>
</ul>
</div>
</li>
</ul>
</div>
</body>
</html>
.arrowlistmenu div {
display:none;
}
Output
300px
You can jump to the latest bin by adding /latest
to your URL
Keyboard Shortcuts
Shortcut | Action |
---|---|
ctrl + [num] | Toggle nth panel |
ctrl + 0 | Close focused panel |
ctrl + enter | Re-render output. If console visible: run JS in console |
Ctrl + l | Clear the console |
ctrl + / | Toggle comment on selected lines |
ctrl + ] | Indents selected lines |
ctrl + [ | Unindents selected lines |
tab | Code complete & Emmet expand |
ctrl + shift + L | Beautify code in active panel |
ctrl + s | Save & lock current Bin from further changes |
ctrl + shift + s | Open the share options |
ctrl + y | Archive Bin |
Complete list of JS Bin shortcuts |
JS Bin URLs
URL | Action |
---|---|
/ | Show the full rendered output. This content will update in real time as it's updated from the /edit url. |
/edit | Edit the current bin |
/watch | Follow a Code Casting session |
/embed | Create an embeddable version of the bin |
/latest | Load the very latest bin (/latest goes in place of the revision) |
/[username]/last | View the last edited bin for this user |
/[username]/last/edit | Edit the last edited bin for this user |
/[username]/last/watch | Follow the Code Casting session for the latest bin for this user |
/quiet | Remove analytics and edit button from rendered output |
.js | Load only the JavaScript for a bin |
.css | Load only the CSS for a bin |
Except for username prefixed urls, the url may start with http://jsbin.com/abc and the url fragments can be added to the url to view it differently. |