Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Padilo300/c69e5684dfe3a18c90ac8e757c254dab to your computer and use it in GitHub Desktop.
Save Padilo300/c69e5684dfe3a18c90ac8e757c254dab to your computer and use it in GitHub Desktop.
Js вернет значение куки
/*эта функция вернет значение куки по имени*/
function get_cookie ( cookie_name )
{
var results = document.cookie.match ( '(^|;) ?' + cookie_name + '=([^;]*)(;|$)' );
if ( results )
return ( unescape ( results[2] ) );
else
return null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment