File: html/ajax_ej.html

Recommend this page to a friend!
  Classes of José M. Carnero   JaSper   html/ajax_ej.html   Download  
File: html/ajax_ej.html
Role: Auxiliary data
Content type: text/plain
Description: JaSper ajax example
Class: JaSper
JavaScript framework for Web manipulation
Author: By
Last change: Content type correction
Date: 9 years ago
Size: 681 bytes
 

Contents

Class file image Download
<html> <head> <title>Ejemplo de uso de AJAX</title> <script type="text/javascript" src="../JaSper.js"></script> <script type="text/javascript"> <!-- $().ready(function(){ //alert('version: ' + $().navegador + "\nmsie: " + $().msie + "\nmozilla: " + $().mozilla + "\nopera: " + $().opera + "\nwebkit: " + $().webkit); $('#capaAjaxA').eventAdd('click', function(){ $('#capaAjax').setDebug(true).ajax('ajax_ej_respuesta.php'); }); }); --> </script> </head> <body> <h1>Ejemplo de uso de AJAX</h1> <p><a id="capaAjaxA" href="#">Pincha aqu&iacute;</a></p> <p id="capaAjax">Esto desaparecer&aacute; cuando pinches arriba</p> </body> </html>