﻿$(document).ready(
        function() {

            // perde oluşturalım
            var PERDE = "";
            PERDE += "<div id='perde' style='visibility:hidden; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 10000;'>";
            PERDE += "<div style='margin:8%;padding:8%'>";
            PERDE += "<h1 style='margin:2% 15% 2% 15%;padding:2% 15% 2% 15%; background: rgba(0,0,0,0.7); color:Red; text-align:center;'>Lütfen Bekleyiniz . . .</h1>";
            PERDE += "</div>";
            PERDE += "</div>";
            $(PERDE).appendTo("body");
            // perde oluşturalım

            $("__disabled__input[type='submit']").each(
            function() {
                $(this).bind("click", function() { $('#perde').css('visibility', 'visible') });
            }
            )

            $("__disabled__a").each(
            function() {
                if ($(this).attr("href").indexOf("http://") == -1) {
                    if ($(this).attr("href").indexOf("#") == -1) {
                        if ($(this).attr("id") == "")
                            $(this).bind("click", function() { $('#perde').css('visibility', 'visible') });
                    }
                }
            }
            )

            $(".autopostback").each(
            function() {
                $(this).bind("click", function() { $('#perde').css('visibility', 'visible') });
            }
            )

        }
        );
