נשלח בתאריך: 03 November 2006 בשעה 12:59 | | IP רשוּם
|
|
|
|
אוקיי מצאתי משהו
function get_cookie(Name) { var search = Name + "=" var returnvalue = ""; if (document.cookie.length > 0) { offset = document.cookie.indexOf(search) // if cookie exists if (offset != -1) { offset += search.length // set index of beginning of value end = document.cookie.indexOf(";", offset); // set index of end of cookie value if (end == -1) end = document.cookie.length; returnvalue=unescape(document.cookie.substring(offset, end) ) } } return returnvalue; }
עכשיו דבר ראשון איך אני אומר לו לאיזה קוקי אני מתכוון? כאילו איך אני יודע איך קוראים בדיוק לכל קוקי? איפה זה רשום? למשל של גוגל(סתם דוגמא).
ועוד דבר, אני צריך לשים
<script>
</script>
בהתחלה של הפונקציה ובסופה?
|