2012-04-26 08:42:28 +00:00
|
|
|
$(document).on('click', '#ajax_form_submit', function(){
|
2011-12-28 12:49:53 +00:00
|
|
|
$('#ajaxForm').ajaxSubmit({
|
|
|
|
beforeSubmit: function(a,f,o) {
|
|
|
|
o.dataType = 'script';
|
|
|
|
}
|
|
|
|
});
|
2012-05-16 07:33:54 +00:00
|
|
|
});
|
|
|
|
$(document).ready(function(){
|
|
|
|
var win = parent.OWindow;
|
|
|
|
var thatwindow = win.thiswindow;
|
|
|
|
alert(self.id);
|
|
|
|
$("div.button_bar input[type=submit]").click(function(){
|
|
|
|
thatwindow.document.getElementById(win.input).value = "Soemthing";
|
|
|
|
return false;
|
|
|
|
})
|
|
|
|
})
|