I have aspx page with form which fire result to div on the same page. I need to process hrefs inside result output. Which action should be used in this case? $(document).ready
and $(document).ajaxComplete
didn't work. Concerning ajaxComplete
as I understand it is because not a jQuery routine is used by page controls.
<script type="text/javascript" language="javascript">
$(document).ajaxComplete(function() {
$('a[href*="mouz"]').removeAttr('href');
});
</script>