Hello,
I'm having som problems with cookies. From a website I found the following two general functions for setting and getting a cookie:
function setCookie(name, value, expires, path, domain, secure) {
var curCookie = name + "=" + escape(value) +
((expires) ? "...
Hello again,
I have an array defined like this:
function Library(x,y,z,p,q,r) {
this.x = x
this.y = y
this.z = z
this.p = p
this.q = q
this.r = r
}
library = new Array();
library[0] =...
Hello,
I want to make a table of authors sorted alphabetically, but the script on my page (se below) is wrong as it sorts the array "author" like this:
author 6
author 8
author 2
author 4
author 1
author 5
author 3
author 7
the html-page looks like this:
Sorry for all the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.