Quiero hacerlo con un botón en vez del div pero ninguno de los dos anda.
Muchas Gracias.
Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Documento sin título</title> <script type="text/javascript" src="jqModal.js"></script> <script type="text/javascript" src="jquery-1.9.1.min.js"></script> <link rel=stylesheet href="jqModal.css" type="text/css"> <script> function nada() { $('#dialog').jqm(); $('#dialog').jqmShow(); } </script> </head> <body> <form> <input type="button" value="abrir" name="finalizar" onClick= onclick="nada()" /> </form> <a href="#" class="jqModal">view</a> <div class="jqmWindow" id="dialog"> <a href="#" class="jqmClose">Close</a> <hr> <em>READ ME</em> holaaaaaaaaaaa </div> </body> </html>