Show green context menu on click
by Stanly Pokrowsky
HTML
<div id="controlContainer">
<div class="option">Click me</div>
</div>
<div id="contextContainer">Context menu!!</div>
CSS
#contextContainer {
display: none;
background-color: green;
height: 100%;
width: 100%;
position: absolute;
bottom: 0;
z-index: 10;
opacity: 90%;
}
#contextContainer {
padding: 50px;
}
JavaScript
$(document).ready(function(ob) {
$('.option').click(function(evObject) {
$("#contextContainer").slideDown(300);
})
});