Widget:Sandbox: Difference between revisions
Jump to navigation
Jump to search
Matt Pijoan (talk | contribs) No edit summary |
Matt Pijoan (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
<includeonly> | <includeonly> | ||
<script type="text/javascript"> | <script type="text/javascript"> | ||
function getCookie(c_name) | |||
{ | |||
var i,x,y,ARRcookies=document.cookie.split(";"); | |||
for (i=0;i<ARRcookies.length;i++) | |||
{ | |||
x=ARRcookies[i].substr(0,ARRcookies[i].indexOf("=")); | |||
y=ARRcookies[i].substr(ARRcookies[i].indexOf("=")+1); | |||
x=x.replace(/^\s+|\s+$/g,""); | |||
if (x==c_name) | |||
{ | |||
return unescape(y); | |||
} | |||
} | |||
} | |||
function hello(){ | function hello(){ | ||
alert(getCookie("SERVERID")); | |||
} | |||
</script> | </script> | ||