Lang: java
Get the source!
Actions
Recent Pastes
forget about it (Wu septiembre 02, 2010 at 18:04)
a traceback of a django error (Wu agosto 20, 2010 at 17:54)
some magic ACL code (Wu agosto 17, 2010 at 17:45)
some django models diff (Wu agosto 16, 2010 at 18:39)
some django-south tests (Wu agosto 16, 2010 at 18:42)
django add/edit revisited (Wu agosto 13, 2010 at 10:39)
django edd/edit (rsk agosto 13, 2010 at 10:40)
django model revisited (Wu agosto 12, 2010 at 20:15)
django (rs agosto 12, 2010 at 20:02)
rebuilding a GEOM mirror (Wu agosto 12, 2010 at 17:53)
About
This is the paste site from e-shell.org, my personal website. It is an instance of the CodeSharingZ Zope Product (just take a look at http://zopecode.codigo23.net/wiki/CodeSharingZ to learn more about it). Feel free to paste whatever you want, but notice that all the pastes in here are deleted in a regular basis.
Links
L java
(http://www.java.com)

Confirm JS

1 function confirma(accion,texto) {
2     var texto = (texto == null) ? "¿ Estás seguro ?" : texto;
3     var accion = (accion == null) ? "alert('No se ha indicado acción a realizar')" : accion;
4 	input_box=confirm(texto);
5 	if (input_box==true) { 
6 		eval(accion);
7 	}
8 }
Pasted by MarcosBL on marzo 05, 2010 at 18:53 | Lang: java | (8 lines of code)