Foros de discusión

<a href="javascript:;" id="addPage">

thumbnail
Charu Babbar, modificado hace 12 años.

<a href="javascript:;" id="addPage">

Regular Member Mensajes: 167 Fecha de incorporación: 13/09/11 Mensajes recientes
Hi All,

Can you explain me this line:<a href="javascript:;" id="addPage"> what is javascript:;
How It can be implemented?
Thanks
With regards,
Charu
thumbnail
Ravi Kumar Gupta, modificado hace 12 años.

RE: <a href="javascript:;" id="addPage">

Liferay Legend Mensajes: 1302 Fecha de incorporación: 24/06/09 Mensajes recientes
href="javascript:somefunction();" is just a way to point to a function of some javascript code.

You can also do: href="#" onclick="somefunction();return false;"

Check this http://stackoverflow.com/questions/2729194/what-is-href-javascript
thumbnail
Samir Gami, modificado hace 12 años.

RE: <a href="javascript:;" id="addPage">

Regular Member Mensajes: 162 Fecha de incorporación: 4/02/11 Mensajes recientes
href="javascript:;" -- it do nothing,
it simply prevent control to jump on top of the page, when <a> clicked.
thumbnail
Charu Babbar, modificado hace 12 años.

RE: <a href="javascript:;" id="addPage">

Regular Member Mensajes: 167 Fecha de incorporación: 13/09/11 Mensajes recientes
Thanks.