We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69a2ad9 commit ebffae9Copy full SHA for ebffae9
blog/article.asp
@@ -5,7 +5,7 @@ var get = new Object();
5
get = GetRequest();
6
var year=2007;
7
id = get['id'];
8
-if(id == 'undefined')
+if(typeof(id) == 'undefined')
9
location.href = '/';
10
if(id>118 && id<154){
11
year = 2008;
blog/index.html
@@ -15,7 +15,7 @@
15
16
17
18
- if(id !== 'undefined'){
+ if(typeof(id) != 'undefined'){
19
20
21
}else if(id>153 && id<176){
0 commit comments