I searched but i can't seem to find a way to stop a specific function
from loading.
<script type="text/javascript">
$(function () {
document.getElementById('charge2').className = 'cur';
ioVation(); // I want to stop thisLoading
// Dialog - Loading
$('#alert-loading').dialog({
autoOpen: true,
modal: true,
open: function() {
$('body').addClass('d-loading');
},
close: function(event, ui) {
if($('body').hasClass('d-loading'))
$('body').removeClass('d-
loading');
},
closeOnEscape: false,
width: 100,
height: 200
});
$('#alert-loading').dialog('close');
});
// 팝업
function mPopUp(srcURL, name, specs){
mWindow = window.open(srcURL, name, specs);
mWindow.focus();
}
function fn_TurmsOfUseOpen() {
$('#alert-termsofuse').dialog('open');
}
</script>
I would like to stop ioVation(); from being called at all, but cant
figure it out, any help would be appreciated.
--
You received this message because you are subscribed to the Google Groups
"greasemonkey-users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/greasemonkey-users?hl=en.