Menu 1

Show hide html div using javascript

I want to customize this show hide html div using javascript.

Html

<a href="#" class="clickme">Menu 1</a>
<div class="box">
   <span><span class="labelText"><span></span>Number 1</span></span>
    <input type="text" value="" maxlength="50"><br/>
    <span><span class="labelText"><span></span>Number 2</span></span>
    <input type="text" class="inputclmsize1"  value="" maxlength="50"  aria-invalid="false"><br>
    <a href="">Submit</a>                                                                                     
</div>

<a href="#" class="clickme">Menu 2</a>
<div class="box">
    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting,
</div>

      

Css code

body {
font: 12px/16px sans-serif;
margin: 10px;
padding: 0;}

.clickme {
background-color: #eee;
border-radius: 4px;
color: #666;
display: block;
margin-bottom: 5px;
padding: 5px 10px;
text-decoration: none;}

.clickme:hover {
text-decoration: underline;}

.box {
background-color: #ccc;
border-radius: 4px;
color: #333;
margin: 5px 0;
padding: 5px 10px;
width: auto;}

      

Javascript code

$('.box').hide();
// Make sure all the elements with a class of "clickme" are visible and bound
// with a click event to toggle the "box" state
$('.clickme').each(function() {
    $(this).show(0).on('click', function(e) {
        // This is only needed if your using an anchor to target the "box" elements
        e.preventDefault();

        // Find the next "box" element in the DOM
        $(this).next('.box').slideToggle('fast');
    });

      

});

When I click on the Menu1 row, two text columns appear with a link to the link. I want when I click the "Submit" button, it will automatically open menu 1 and menu 2. how can I do this. please can anyone help? :( fiddle link here   http://jsfiddle.net/rn4qdyue/2/

+3


source to share


4 answers


You can add a click event to the submit button and then toggle each field.

$("#submit").click(function(e){
    e.preventDefault();
    $("#box1").slideToggle('fast');
    $("#box2").slideToggle('fast');
});

      



Note. I added ids to the submit button and both DIV

s.

Fiddle: http://jsfiddle.net/rn4qdyue/6/

+4


source


You can add id

for your submission.

<a id="submit" href="">Submit</a>  

      

In JS do the following:



$('#submit').click(function(e){
    e.preventDefault();
  $('.box').slideToggle('fast');
})

      

Fiddle .

+3


source


Add a click handler to send.

<a href="" id="submit">Submit</a>  

      


$('#submit').click(function(e){
    e.preventDefault();
    var $parent = $(this).closest('.box');

    $parent.slideToggle('fast');
    $parent.next('.clickme').click();
});

      

Updated Fiddle

+3


source


Check the next solution.

$('#submit').on('click', function(e) {
    e.preventDefault();
    var $el = $(this).parent('.box');

    $el.slideUp('fast');
    $el.next().next('.box').slideDown('fast')
});

      

Updated script

+3


source







All Articles