Abhijeet KaurEditor

Registration of Real Estate Project by the promoter under RERA

Posted on 24/01/2019

The Article provides all the important information on the following points: Application for compulsory registration of the real estate project with

    $(function () { $("#TotalCount").val(1); $("#PageNo").val(1); $("#Paging").pagination({ items: $("#TotalCount").val(), itemsOnPage: 5, cssStyle: 'light-theme', currentPage: $("#PageNo").val(), onPageClick: function (pageNumber, event) { if (window.location.search.indexOf("page") > -1) { var url = window.location.pathname + window.location.search.replace("page=" + $("#PageNo").val() + "", "page=" + pageNumber + ""); location.href = url; } else { location.href = window.location.pathname + window.location.search + "&page=" + pageNumber; } } }); }); $(document).ready(function () { $("#Subscribe").click(function () { console.log("ok"); var email = $("#Email").val(); if (email != "") { if (validateEmail(email)) { $.ajax('/Blog/SubscribeArticle?Email=' + email, { type: 'POST', success: function (data, status, xhr) { if (data.Status==0) { alert("Your request has been accepted. Please check your inbox for verification."); $("#Email").val(""); } else { alert(data.ErrorMessageText); } }, error: function (jqXhr, textStatus, errorMessage) { alert('Error' + errorMessage); } }); } else { alert("Please Enter Correct Email Address !!"); } } else { alert("Please Enter Email"); } }); }); function validateEmail(email) { var reg = /^\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/; if (reg.test(email)) { return true; } else { return false; } }