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

Insert Html Snippet, version 1.3.2. 16 lines.

- Page: https://pluginprobe.com/plugins/insert-html-snippet/1.3.2/code/js/notice.js
- Raw: https://pluginprobe.com/plugins/insert-html-snippet/1.3.2/raw/js/notice.js
- Modified: 2018-01-15T14:40:16+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.3.2/code/js/notice.js#L10-L20`.

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

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

		});

	});

```
