Cargar imagen con jquery en HTML5
Documento sin título Cargar imagen con jquery en HTML5 En esta ocasión les mostrare una nueva forma de cargar una imagen directamente desde javascript. Esto es posible gracias a HTML5 que incluye nuevas librerías para el manejo de archivos. Bueno ahora miremos el siguiente 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 language= "JavaScript" type= "text/javascript" src= "jquery.js" charset= "utf-8" ></script> <script type= "text/javascript" language= "javascript" > $( window ). load ( function (){ $( function () { $( '#file-input' ).change(func...