Ver Mensaje Individual
  #1 (permalink)  
Antiguo 15/05/2013, 06:50
jmm87
 
Fecha de Ingreso: octubre-2012
Mensajes: 202
Antigüedad: 11 años, 6 meses
Puntos: 0
acceder a frame con jquery

hola buen dia
tengo el siguiente frame:
Código HTML:
Ver original
  1. <iframe name="frame" id="frame "src="inicio.html" width="100%" height="300" frameborder="0" scrolling="no" AllowTransparency>
  2.                 Texto alternativo para navegadores que no aceptan iframes
  3.                 </iframe>

y una lista que cargar htmls externos en el frame:

Código HTML:
Ver original
  1. <ul id="menu">
  2.                             <li><a href="inicio.html" target="frame">Inicio</a></li>
  3.                             <li><a href="historia.html" target="frame">Historia</a></li>
  4.                             <li><a href="productos.html" target="frame">Equipos de Frio</a></li>
  5.                             <li><a href="revestimientos.html">Revestimiento Termico</a></li>
  6.                             <li><a href="repuestos.html" target="frame">Repuestos A/A</a></li>
  7.                             <li><a href="Contacts.html" target="frame">Contacto</a></li>
  8.                         </ul>

lo que quiero hacer es hacer lo mismo pero con JQUERY para poder ponerle algun efecto cuando cargar el html dentro del frame.
Se podra? gracias a quien ayude!!