- I am trying to open the menu items on clicking on click here link.
My fiddle link is as below link
This link should work like toggle on clicking. Please help with this
enter code here
Asked
Active
Viewed 37 times
-3

siva shanker
- 9
- 7
-
1It is working fine for me. what is your problem exactly? – Rajaprabhu Aravindasamy Jul 17 '16 at 17:37
-
have you not need toggle? or explain your problem.. – webdevanuj Jul 17 '16 at 17:39
-
You saw the big, red warning about posting a [mcve] **in your question** when linking to jsFiddle, yet you thought that it didn't apply to you and you'd just try and get around it by highlighting meaningless text as code. Please do as you were asked. – j08691 Jul 17 '16 at 17:40
-
please check now, link is updated, tried using toggle call is going to click function but menu not expanding !!! – siva shanker Jul 17 '16 at 17:41
-
copy your `jsfiddle fiddle` code here in your question – webdevanuj Jul 17 '16 at 17:42
-
pls check link ---> http://jsfiddle.net/vssJr/155/ @anuj – siva shanker Jul 17 '16 at 17:43
-
@sivashanker http://jsfiddle.net/vssJr/156/ – Rajaprabhu Aravindasamy Jul 17 '16 at 17:46
-
remove this id `filter-panel2` from html and its work – webdevanuj Jul 17 '16 at 17:46
-
pls help in fixing in the fiddle ......... – siva shanker Jul 17 '16 at 17:48
-
@ Rajaprabhu Aravindasamy issue is resolved , i have seen u have removed 'filter-panel2' class. what is causing the problem – siva shanker Jul 17 '16 at 17:52
-
[updated fiddle](http://jsfiddle.net/webdevanuj/vssJr/160/) – webdevanuj Jul 17 '16 at 17:53
1 Answers
0
You can't use two or multiple ID(s)
on one html element(tag)..why you can not do this read on this link
so finally your code:
<div class="cart_clas" >
<div id="showAll">
<a href="#">Click here</a>
</div>
<!-- menu !-->
<div class="filter-panel1" id="menu_rewards" style="display:none; ">
<div class="row" style="float:right;">
<div class="Shop_by">Shop by Categories</div>
<div class="hotel_menu">Deals & Offers</div>
<div class="hotel_menu">Mobile, Tablets & Accessories</div>
<div class="hotel_menu">Laptops & Peripherals</div>
<div class="hotel_menu">Men Fashion</div>
<div class="hotel_menu">Women Fashion</div>
<div class="hotel_menu">Home Decor & Kitchen</div>
<div class="hotel_menu">Personal & Health Devices</div>
<div class="hotel_menu">Home And Kitchen Appliances</div>
<div class="hotel_menu">Tv & Entertainment Devices</div>
<div class="hotel_menu">Camera, Dslrs & Accessories</div>
<div class="hotel_menu">Coupons & Discounts</div>
<div class="hotel_menu">Baby & Kids</div>
<div class="hotel_menu">Beauty & Health</div>
<div class="hotel_menu">Stationery & Office Supplies</div>
<div class="hotel_menu">Sports & Fitness</div>
<div class="hotel_menu">Car & Bike Accessories</div>
<div class="hotel_menu">Gifts & Hobbies </div>
</div>
</div>
<!-- menu !-->
</div>
and Jquery:
$(function() {
$('#showAll').click(function(){ //Adds click event listener
$('#menu_rewards').show(); // Toggles visibility.
});
});

Community
- 1
- 1

webdevanuj
- 675
- 12
- 22