Files
Phraseanet/www/prod/jquery.Prod.js
Romain Neutron 0a218b6607 Production JS
2011-12-26 10:47:17 +01:00

33 lines
591 B
JavaScript

(function(){
$(document).ready(function(){
$('a.dialog').live('click', function(event){
var $this = $(this);
$.ajax({
type: "GET",
url: $this.attr('href'),
dataType: 'html',
beforeSend:function(){
},
success: function(data){
$('#DIALOG').attr('title', $this.attr('title'))
.empty()
.append(data)
.dialog()
.dialog('open');
return;
}
});
return false;
});
});
}())