I have a question about the href link, tried googling it but could not find much info on this. I have a href link like this:
<a href='#' onclick='openSerialWindow();return false;'><h:outputText value="#{i18n.regFindSerialNumber}" /></a>
previously the #
was replaced by the page.htm that it should link to and that caused an error when user right clicked on the link and chose 'Open in new window/tab'. After replacing the page.htm with # it works fine user can even r/c and open it in new tab/window.
If user simply clicked on the link both ways above worked (the # and page.htm), so I am wondering what is the true meaning of #
?
thanks.