Archive for the ‘javascript’ Category

Go to top function with slide effect

Sunday, March 21st, 2010
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
var goto_top_type = -1;
var goto_top_itv = 0;
 
function goto_top_timer()
{
  var y = goto_top_type == 1 ? document.documentElement.scrollTop : document.body.scrollTop;
  var moveby = 15;
 
  y -= Math.ceil(y * moveby / 100);
  if (y < 0) {
    y = 0;
  }
 
  if (goto_top_type == 1) {
    document.documentElement.scrollTop = y;
  }
  else {
    document.body.scrollTop = y;
  }
 
  if (y == 0) {
    clearInterval(goto_top_itv);
    goto_top_itv = 0;
  }
}
 
function goto_top()
{
  if (goto_top_itv == 0) {
    if (document.documentElement && document.documentElement.scrollTop) {
      goto_top_type = 1;
    }
    else if (document.body && document.body.scrollTop) {
      goto_top_type = 2;
    }
    else {
      goto_top_type = 0;
    }
    if (goto_top_type > 0) {
      goto_top_itv = setInterval('goto_top_timer()', 50);
    }
  }
}

href and onclick method in ‘A’ tag

Friday, October 16th, 2009

How to invoke onclick method but not go to the page head.

1
<a href="#" onclick="javascript:jsMethod();return false;">a link</a>