In the following sample I am trying to close an opened notification forcefully by clicking the button as suggeseted in the notify.js API advanced example, how can this be done?
JavaScript
x
9
1
function CLOSE() {
2
$('#btn').trigger('notify-hide');
3
}
4
$(document).ready(function() {
5
6
$('#btn').notify('test note', {
7
position: 'right'
8
});
9
});
JavaScript
1
4
1
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
2
<script src="https://cdnjs.cloudflare.com/ajax/libs/notify/0.4.2/notify.js"></script>
3
4
<button onClick="CLOSE()" id="btn" class="tst">Test</button>
Advertisement
Answer
You have to trigger notify-hide
event for div
which represents notify
element.
JavaScript
1
9
1
function CLOSE() {
2
$('.notifyjs-wrapper').trigger('notify-hide');
3
}
4
$(document).ready(function() {
5
6
$('#btn').notify('test note', {
7
position: 'right'
8
});
9
});
JavaScript
1
4
1
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
2
<script src="https://cdnjs.cloudflare.com/ajax/libs/notify/0.4.2/notify.js"></script>
3
4
<button onClick="CLOSE()" id="btn" class="tst">Test</button>
Here is the snippet which shows how looks DOM structure:
JavaScript
1
10
10
1
<div class="notifyjs-wrapper notifyjs-hidable">
2
<div class="notifyjs-arrow" style="left: 41px; top: 6px; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-right: 5px solid rgb(238, 211, 215); display: none;">
3
</div>
4
<div class="notifyjs-container" style="left: 46px; top: -7.5px; display: none;">
5
<div class="notifyjs-bootstrap-base notifyjs-bootstrap-error">
6
<span data-notify-text="">test note</span>
7
</div>
8
</div>
9
</div>
10