Drop Up form from Footer

<PLEASE USE THE FOLLOWING TEMPLATE TO HELP YOU CREATE A GREAT POST!>
Hi, will anybody help me.I installed Boostrap and I need after pressing the grey button in the footer the FORM appear, but I am helpless. No adea, how to do that. Thanks a lot.

<Below this line, add a link to the EXACT exercise that you are stuck at.>

<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
-Drop Up original list from Getboostrap.com did not appear also after button been pressed. I replaced list with FORM and also not working. www.getboostrap.com->components->dropdowns->Dropup button code

``` h2{text-align:center;} footer{ position: absolute; left: 0px; bottom:0px; background:grey; width:100%; height:100px; text-align:center; }

DropUp Form from Footer

Dropup
<do not remove the three backticks above>

You will have to define a logic to the button , only then the form will appear on pressing the button… Do some javascript or jquery

Using jquery this can be done somewhat like this

jQuery(function($) {
$('#dropdownmenu2').click(function() {

$('form').show();

});

});

Also make sure to apply```
display: none;


Hope that helps

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.