0
votes
3answers
331 views
PHP Static variable not working as expected
This example is from php.net:
<?php
function Test()
{
static $a = 0;
echo $a;
$a++;
}
?>
An …
2
votes
7answers
728 views
Prevent js alert() from pausing timers
So I made some timers for a quiz. The thing is, I just realized when I put
javascript: alert("blah");
in the address, the popup alert box pauses …
2
votes
Unobtrusive Javascript rich text editor?
I was looking for a good editor too last week, tried WMD but is just not easily customized enough compared to markItUp. It's so …
