Javascript examples for DOM HTML Element:Anchor
Hide link by setting href via Javascript
<!doctype html> <html> <head> <title>Bla!</title> <script type="text/javascript"> function SetDest(a) { a.href = "http://java2s.com"; }/* w ww .ja v a 2s.c om*/ </script> </head> <body> <a href="" onclick="SetDest(this);"> Click Here </a> </body> </html>