https://www.ozchase.com.au/

Submitted URL:
https://www.ozchase.com.au/
Report Finished:

The outgoing links identified from the page

JavaScript Variables · 159 found

Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope

NameType
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
dT_object
dtrumobject
dynatraceobject
ClearSubscribersfunction
debugfunction
Navigationfunction
preventBackspaceNavigationfunction

Console log messages · 3 found

Messages logged to the web console

TypeCategoryLog
logother
URL
https://www.ozchase.com.au/bundles/libs?v=3l8WZJ8hqwIJ2XMQhHZxtT9leBl3mgVq7NB2_9sfkW01
Text
JQMIGRATE: Logging is active
warningother
URL
https://www.ozchase.com.au/bundles/libs?v=3l8WZJ8hqwIJ2XMQhHZxtT9leBl3mgVq7NB2_9sfkW01
Text
JQMIGRATE: jQuery.browser is deprecated
traceother
URL
https://www.ozchase.com.au/bundles/libs?v=3l8WZJ8hqwIJ2XMQhHZxtT9leBl3mgVq7NB2_9sfkW01
Text
console.trace

HTML

The raw HTML body of the page

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>
	OzChase - OzChase
</title>    
        
    <script type="text/javascript" src="/ruxitagentjs_ICANVfqru_10299241001084140.js" data-dtconfig="rid=RID_2418|rpid=-1801261904|domain=ozchase.com.au|reportUrl=/rb_bf98722brf|app=dbf0c908bf3125bb|cuc=pogpjzix|mel=100000|featureHash=ICANVfqru|dpvc=1|lastModification=1728388774969|nsfnv=1|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/ruxitagentjs_ICANVfqru_10299241001084140.js"></script><link rel="SHORTCUT ICON" href="/Content/images/icons/ozchase.ico">               
    <link type="text/css" href="/Content/css/main.css" rel="stylesheet">   
   <script src="/bundles/libs?v=3l8WZJ8hqwIJ2XMQhHZxtT9leBl3mgVq7NB2_9sfkW01"></script>

<script type="text/javascript" id="ddxss_custom">
    (function () {
        var method; var noop = function () { }; var methods = [
            'assert', 'clear', 'count', 'debug', 'dir', 'dirxml', 'error',
            'exception', 'group', 'groupCollapsed', 'groupEnd', 'info', 'log',
            'markTimeline', 'profile', 'profileEnd', 'table', 'time', 'timeEnd',
            'timeStamp', 'trace', 'warn'];
        var length = methods.length; var console = (window.console = window.console || {});
        while (length--) { method = methods[length]; if (!console[method]) { console[method] = noop; } }
    } ());
    
    function RedirectToURL(rUrl) {
        window.location.href = rUrl;
    }

    function RedirectParentToURL(rUrl) {
        parent.document.location = rUrl;
    }

    function UpdateParentIFrameContainer(iframeHTML, tabindex) {
        parent.UpdateIFrameContainer(iframeHTML, tabindex);
    }

    function UpdateParentIFrameContainerWithHTML(iframeHTML, tabindex, ctrlHTML) {
        parent.UpdateIFrameContainerWithHTML(iframeHTML, tabindex, ctrlHTML);
    }

    // Prevent the backspace key from navigating back.
    $(function () {
        $(document).unbind('keydown').bind('keydown', function (event) {
            var doPrevent = false;
            if (event.keyCode === 8) {
                var d = event.srcElement || event.target;
                if ((d.tagName.toUpperCase() === 'INPUT' && (d.type.toUpperCase() === 'TEXT' || d.type.toUpperCase() === 'PASSWORD' || d.type.toUpperCase() === 'FILE'))
                        || d.tagName.toUpperCase() === 'TEXTAREA') {
                    doPrevent = d.readOnly || d.disabled;
                } else {
                    doPrevent = true;
                }
            }

            if (doPrevent) {
                event.preventDefault();
            }
        });
    });


    $(function () {
        $.datepicker.setDefaults({
            dateFormat: "dd/mm/yy",
            firstDay: 1,
            showOn: "button",
            showAnim: 'blind',
            buttonImageOnly: true,
            buttonImage: '/Content/images/icons/calendar.png',
            showOtherMonths: true,
            selectOtherMonths: true,
            changeMonth: true,
            changeYear: true,
            showButtonPanel: true,
            minDate: new Date(1890, 0, 1),
            maxDate: new Date(2199, 0, 1)
        });
    });
    
    AddressAutocompleteHelperSettings.FindBySuburbsURL = '/Address/FindLocalitiesBySuburb';
    AddressAutocompleteHelperSettings.FindByPostcodeURL = '/Address/FindLocalitiesByPostcode';

    Urls.FetchRecord = '/Home/FetchRecord';
    Urls.StartNewRecord = '/Home/StartNewRecord';

    Urls.Images = '/Content/images/';

    $(function () {
        $.ajaxSetup({
            // Disable caching of AJAX responses */
            cache: false
        });
    });

</script>
</head>
<body>    
             	
    
    <div id="main">
            
    <h1 style="color:White;"><span>OzChase Landing</span></h1>
    <p>
        <button type="button" id="start-button" onclick="openSecuredBrowserWindow('/Registration/')">Open Secured Window...</button>
    </p>
    
    
    <script type="text/javascript">
        $(document).ready(function() {
            $('#start-button').focus();
        });
        /// <summary>
        /// Opens a specified URL in a new, locked-down browser window
        /// </summary>
        /// <returns></returns>
        function openSecuredBrowserWindow(openURL) {
            if (openURL == null) {
                openURL = "/";
            }

            var width = 1270;
            var height = 980;
            var leftPos = parseInt((screen.availWidth / 2) - (width / 2));
            var topPos = parseInt((screen.availHeight / 2) - (height / 2));

            newWindow = window.open(openURL, null, "resizable=yes,height=" + height
                                                    + ",width=" + width
                                                    + ",left="+ leftPos
                                                    + ",top="+ topPos
                                                    + ",screenX=" + leftPos
                                                    + ",screenY=" + topPos 
                                                    + ",status=no,toolbar=no,scrollbars=yes,menubar=no,address=no,location=no");

        }
    </script>
    

    </div>    


</body></html>