16 lines
393 B
JavaScript
16 lines
393 B
JavaScript
|
$(document).ready(function() {
|
||
|
|
||
|
$('.open-panel').click(function(e) {
|
||
|
e.preventDefault();
|
||
|
target = $(this).attr('href');
|
||
|
$(target).addClass('open');
|
||
|
});
|
||
|
$('.panel .overlay').click(function(e) {
|
||
|
e.preventDefault();
|
||
|
$(this).parent().removeClass('open');
|
||
|
});
|
||
|
$('.panel .icon-close').click(function(e) {
|
||
|
e.preventDefault();
|
||
|
$(this).parent().parent().removeClass('open');
|
||
|
});
|
||
|
});
|