amigos estoy tratando de implementar la ventana modal
y tengo el siguiente codigo
Código Javascript
:
Ver original<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript" src="jquery-1.2.6.js"></script>
<script language="javascript">
$( document ).ready( function() {
$("a[rel='pop-up']").click(function () {
var caracteristicas = "height=700,width=800,scrollTo,resizable=1,scrollbars=1,location=0";
nueva=window.open(this.href, 'Popup', caracteristicas);
return false;
});
});
</script>
</head>
<body>
<p><a href="ventana.html" rel="pop-up">ABRIR POP UP</a></p>
</body>
</html>
este funciona perfecto pero lo necesito integrar con el siguiente codigo
Código Javascript
:
Ver originaleventRender: function (event, element) {
element.qtip({
content: {
title: { text: event.title },
text:'<span class="title">Evento N°:</span>'+ event.id+'<br><span class="title">Inicio: </span>' + ($.fullCalendar.formatDate(event.start, 'hh:mmtt')) + '<br><span class="title">Fin: </span>' + ($.fullCalendar.formatDate(event.end, 'hh:mmtt'))+ '<br><span class="title">Autor: </span>'+event.ejemplo+'<p><a href="ventana.html" rel="pop-up">ABRIR POP UP</a></p>'
},
show: {
when: 'click',
solo: true // Only show one tooltip at a time
},
hide: { when: 'inactive', delay: 3000 },
style: {
width: 300,
padding: 5,
color: 'black',
textAlign: 'left',
border: {
width: 1,
radius: 3
},
tip: 'topLeft',
classes: {
tooltip: 'ui-widget',
tip: 'ui-widget',
title: 'ui-widget-header',
content: 'ui-widget-content'
}
}
});
}
me abre una nueva ventana pero no es popup
que estoy haciendo mal?