2013-02-21 08:55:30 +00:00
|
|
|
<div class="span12 clearfix">
|
|
|
|
<div class="pull-right" style="margin-top: 15px;">
|
|
|
|
<form class="form-search">
|
|
|
|
<div class="input-append">
|
|
|
|
<input type="text" class="span2 search-query"
|
|
|
|
id="product-search" placeholder="Product Search..." />
|
|
|
|
<button class="btn" id="btn-product-search">
|
|
|
|
<i class="icon-search"></i></button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
2012-12-18 09:17:54 +00:00
|
|
|
<script>
|
|
|
|
// redirect to product search page
|
|
|
|
$(document).ready(function() {
|
2012-12-20 11:41:51 +00:00
|
|
|
$('.dropdown-toggle').dropdown()
|
2012-12-18 09:17:54 +00:00
|
|
|
$("#btn-product-search").click(function() {
|
|
|
|
var txt = $("#product-search").val();
|
|
|
|
if(txt) {
|
|
|
|
window.location.href="product_search.html?q=" + txt;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
$("#product-search").keypress(function(e) {
|
|
|
|
if(e.which==13) $("#product-search-btn").click();
|
|
|
|
})
|
|
|
|
})
|
|
|
|
</script>
|
2013-02-21 08:55:30 +00:00
|
|
|
</div>
|