# insert-html-snippet/1.2.1/js/notice.js

Insert Html Snippet, version 1.2.1. 16 lines.

- Page: https://pluginprobe.com/plugins/insert-html-snippet/1.2.1/code/js/notice.js
- Raw: https://pluginprobe.com/plugins/insert-html-snippet/1.2.1/raw/js/notice.js
- Modified: 2016-11-19T11:48:04+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/insert-html-snippet/1.2.1/code/js/notice.js#L10-L20`.

```javascript
	jQuery(document).ready(function() {
		jQuery('#system_notice_area').animate({
			opacity : 'show',
			height : 'show'
		}, 500);

		jQuery('#system_notice_area_dismiss').click(function() {
			jQuery('#system_notice_area').animate({
				opacity : 'hide',
				height : 'hide'
			}, 500);

		});

	});

```
