Skip to content

Instantly share code, notes, and snippets.

@kurudrive
Created December 5, 2013 12:30
Show Gist options
  • Save kurudrive/7804444 to your computer and use it in GitHub Desktop.
Save kurudrive/7804444 to your computer and use it in GitHub Desktop.
[javascript]cookieの受け渡し
<script type="text/javascript">
jQuery(document).ready(function(){
// クッキーに投げる
jQuery.cookie('jsNotIn','値');
// クッキーの値を受け取る
var notIn = jQuery.cookie('jsNotIn');
console.log(notIn);
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment