Coder Social home page Coder Social logo

ianrmn / jquery.cookiebar Goto Github PK

View Code? Open in Web Editor NEW

This project forked from carlwoodhouse/jquery.cookiebar

0.0 1.0 0.0 68 KB

A simple, lightweight jQuery plugin for creating a notification bar that is dismissable and dismiss is saved by cookie. Perfect for implementing the new eu cookielaw!

License: MIT License

CSS 20.92% JavaScript 52.27% HTML 26.81%

jquery.cookiebar's Introduction

jquery.cookieBar

A simple, lightweight jQuery plugin for creating a notification bar that is dismissable and dismiss is saved by cookie. Perfect for implementing the new eu cookielaw! - example available on gh-pages

If you like jquery.cookieBar and use it commercially please consider giving a donation. Thankyou.

Installation

Include script after the jQuery library

<script src="/path/jquery.cookieBar.js"></script>

If you want the default styles also include the css, if not feel free to style it as you see wish!

<link rel="stylesheet" type="text/css" href="cookieBar.css">

Usage

Create a cookiebar with no markup whatsoever! it's like magic ...

<script type="text/javascript">
	$(document).ready(function() {
	  $.cookieBar();
	});
</script>

Or, create your cookiebar markup from a simple container, example:

<script type="text/javascript">
	$(document).ready(function() {
	  $('.cookie-message').cookieBar();
	});
</script>

<div class="cookie-message">
	The government says i have to tell you i use cookies, so here it is
</div>

Or, create your cookiebar markup from a simple container with an advanced button, example:

<script type="text/javascript">
	$(document).ready(function() {
	  $('.cookie-message').cookieBar({ closeButton : '.my-close-button' });
	});
</script>

<div class="cookie-message">
	The government says i have to tell you i use cookies, so here it is <a class="my-close-button" href>cheers!</a>
</div>

Or, create your cookiebar markup from a simple container with a super advanced button that does something custom on close instead of just hiding, example:

<script type="text/javascript">
	$(document).ready(function() {
	  $('.cookie-message').cookieBar({ closeButton : '.my-close-button', hideOnClose: false });
	  $('.cookie-message').on('cookieBar-close', function() { $(this).slideUp(); });
	});
</script>

<div class="cookie-message">
	The government says i have to tell you i use cookies, so here it is <a class="my-close-button" href>cheers!</a>
</div>

Full Example Check out example.html in the repository or visit our [github-page] (http://carlwoodhouse.github.com/jquery.cookieBar)

Options

closeButton - Define a close button for the bar

closeButton: 'none'

Default: a close button will be added automagically

hideOnClose - Hide the cookiebar when the close button is clicked

hideOnClose: false

*Use-case: you might want some different behaviour on close, eg. a slide animiation. an event will be triggered on close. Default: the cookiebar will be hidden on close

name - Define the cookie name, useful for subdomains or versioning cookies

name: 'somecookiename'

Default: 'cookiebar'

secure - Define if the cookie transmission requires secure protocal (https)

secure: true

Default: false

path - Define the path the cookie is valid for

path: '/path/for/cookie'

Default: '/' (site wide)

domain - Define the domain the cookie operates on

domain: 'domain.com'

Default: domain cookie was created on

expiresDays - Define the expiry date of the cookie in days (from time created)

expiresDays: 30

Default: 365

Special thanks to Craig Hamnett for the original CSS.

jquery.cookiebar's People

Contributors

carlwoodhouse avatar colin-r avatar craighamnett avatar marksearle avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.