Archive for the ‘ JavaScript ’ Category
[ LEER MÁS]
Os dejo una sencilla tarea para crear un botón grande con jQuery (y CSS) a partir de un contenedor (DIV, SPAN, LI…) con un enlace dentro tal como: <div> <a class="myclass linkparent" href="http://www.google.com/ig" onclick="alert('iGoogle');">iGoogle</a> </div> utilizando jQuery de este modo: $(document).ready(function(){ // click en contenedores de enlaces $('.linkparent').each(function(){ var a = $(this); a.click(function(e){ e.stopPropagation(); }); [ LEER MÁS]
Get every new post delivered to your Inbox.