Ver Mensaje Individual
  #1 (permalink)  
Antiguo 27/11/2014, 08:05
knt6
 
Fecha de Ingreso: septiembre-2012
Mensajes: 2
Antigüedad: 12 años, 3 meses
Puntos: 0
Como llamar a una funcion en js

BUENAS A TODOS TENGO UNA DUDA, TENGO EL SIGUIENTE CODIGO JAVASCRIPT Y QUIERO EJECUTAR LA FUNCION info-title EN EL EVENTO ONLOAD, ya que este codigo se ejecuta cuando hago click a este link:

<a href="#" id="info-title">MOSTRAR MENSAJE</a>

jQuery.noConflict ();
(function($) {
$(document).ready(function() {

$('#show-hide-code').on('click', function() {
$('.code').toggle();
});

$('#info-title').on('click', function() {
new Messi('This is a message with YAMIL.', {title: 'Title', titleClass: 'info', buttons: [{id: 0, label: 'Close', val: 'X'}]});
});

GRACIAS

Última edición por knt6; 27/11/2014 a las 08:24