
reynaldo Ivan, 06:14h, 05 - Octubre - 2011
QUIERES QUE TE AVISEMOS CUANDO ESTA PREGUNTA SEA RESPONDIDA?
ocultarRESPUESTAS
Carlos, 08:50h, 05 - Octubre - 2011
El framework de jquery es muy sencillo, solo tienes que ir a la pagina oficial y descargarte el fichero jquery.js, y llamarlo desde tu web, luego usando los diferentes plugins que te podras encontrar realizas las llamadas con una simple linea de codigo.
En ejemplo de llamada a un plugin llamado prettyphoto,
primero lo inicializamos
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$("a[rel^='prettyPhoto']").prettyPhoto();
});
</script>
y simplemente indicando el rel="prettyPhoto" en la imagen
<a href="images/fullscreen/2.jpg" rel="prettyPhoto" title="This is the description"><img src="images/thumbnails/t_2.jpg" width="60" height="60" alt="This is the title" /></a>
Si te gusta esta página, dale a +1 de Google para que puedan encontrarla nuevos usuarios.

SELECCION DE PROGRAMA