THE HOUSE BOX - apartments for rent in Kuwait, Furnished apartments Kuwait (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-131171397-1', 'auto'); ga('send', 'pageview'); { "@context" : "http://schema.org", "@type" : "LocalBusiness", "name" : "THE HOUSE BOX REAL ESTATE PORTAL", "image" : "http://www.housebox-kw.com/images1/logo/logo.png", "telephone" : "+965 2573 0418", "email" : "info@housebox-kw.com", "url" : "http://housebox-kw.com/", "aggregateRating" : { "@type" : "AggregateRating", "ratingValue" : "5", "bestRating" : "5", "ratingCount" : "1" } } window.fbAsyncInit = function() { FB.init({ appId : '1733458826725905', xfbml : true, version : 'v2.11' }); FB.AppEvents.logPageView(); }; (function(d, s, id){ var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) {return;} js = d.createElement(s); js.id = id; js.src = "https://connect.facebook.net/en_US/sdk.js"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk'));

Luxury Apartments for Rent in Kuwait Furnished apartments Kuwait Housing in Kuwait Serviced apartments Kuwait Apartments in Kuwait Sea Side Luxury apartments in Kuwait apartments for rent in bnaid algar bneid al gar Salmiya Bnied al gar Salwa sabah al salem Bnied al gar

FIND YOUR PROPERTY HERE

Housing & Serviced Apartments in Kuwait

Premium Properties

House Box Videos

動画はこちらから
YouTubeへのリンク
動画はこちらから
YouTubeへのリンク
// This is called with the results from from FB.getLoginStatus(). function statusChangeCallback(response) { console.log('statusChangeCallback'); console.log(response); // The response object is returned with a status field that lets the // app know the current login status of the person. // Full docs on the response object can be found in the documentation // for FB.getLoginStatus(). if (response.status === 'connected') { // Logged into your app and Facebook. testAPI(); } else { // The person is not logged into your app or we are unable to tell. document.getElementById('status').innerHTML = 'Please log ' + 'into this app.'; } } // This function is called when someone finishes with the Login // Button. See the onlogin handler attached to it in the sample // code below. function checkLoginState() { FB.getLoginStatus(function(response) { statusChangeCallback(response); }); } window.fbAsyncInit = function() { FB.init({ appId : '1733458826725905', cookie : true, // enable cookies to allow the server to access // the session xfbml : true, // parse social plugins on this page version : 'v2.11' // use graph api version 2.8 }); // Now that we've initialized the JavaScript SDK, we call // FB.getLoginStatus(). This function gets the state of the // person visiting this page and can return one of three states to // the callback you provide. They can be: // // 1. Logged into your app ('connected') // 2. Logged into Facebook, but not your app ('not_authorized') // 3. Not logged into Facebook and can't tell if they are logged into // your app or not. // // These three cases are handled in the callback function. FB.getLoginStatus(function(response) { statusChangeCallback(response); }); }; // Load the SDK asynchronously (function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "https://connect.facebook.net/en_US/sdk.js"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk')); // Here we run a very simple test of the Graph API after login is // successful. See statusChangeCallback() for when this call is made. function testAPI() { console.log('Welcome! Fetching your information.... '); FB.api('/me', function(response) { console.log('Successful login for: ' + response.name); document.getElementById('status').innerHTML = 'Thanks for logging in, ' + response.name + '!'; }); } $(document).ready(function(){ function loading_show(){ $('#loading').html("<img src='images/loading.gif'/>").fadeIn('fast'); } function loading_hide(){ $('#loading').fadeOut('fast'); } function loadData(page){ loading_show(); var location= $("#location").val(); var property_type= $("#property_type").val(); var bedrooms= $("#bedrooms").val(); var bathrooms= $("#bathrooms").val(); var price_range= $("#price_range").val(); var numofrecords= $("#numofrecords").val(); if(numofrecords==''){var numofrecords=20;} $.ajax ({ type: "POST", url: "get-recent-property.php", data: {page:page,numofrecords:numofrecords,location:location,property_type:property_type,bedrooms:bedrooms,price_range:price_range,bathrooms:bathrooms}, success: function(msg) { loading_hide(); $("#container").html(msg); } }); } loadData(1); // For first time page load default results $('body').on('click', '#container .pagination li.active', function(){ var page = $(this).attr('p'); loadData(page); }); $('body').on('click', '#go_btn', function(){ var page = parseInt($('.goto').val()); var no_of_pages = parseInt($('.total').attr('a')); if(page != 0 && page <= no_of_pages){ loadData(page); }else{ alert('Enter a PAGE between 1 and '+no_of_pages); $('.goto').val("").focus(); return false; } }); $('body').on('click', '#search_btn', function(){ var page = 1; loadData(page); }); });


jQuery(document).ready(function()//When the dom is ready { jQuery("#formGen").validate( { rules: { loginusername: "required", loginpassword: { required: true, minlength: 6 }, }, messages: { loginusername: "Please enter your email address", loginpassword: { required: "Please provide a password", minlength: "password must be at least 6 characters long" }, }, submitHandler: function(){ jQuery(".loading").show(); jQuery(".error1").hide(); var postData = jQuery("#formGen").serializeArray(); var formURL = "ajax/login.php"; jQuery.ajax( { url : formURL, type: "POST", data : postData, success:function(data) { jQuery(".loading").hide(); if(data==1){ window.location="dashboard.php"; }else{ jQuery(".error1").show(); } jQuery("html, body").animate({ scrollTop: 0 }, "slow"); } }); }, errorClass: "fieldError", }); jQuery("#signupForm").validate( { rules: { cname: "required", cemail: { required: true, email: true }, cmessage: { required: true } }, messages: { cname: "Please enter your name", cemail: { required: "Please enter a valid email address", email: "Please enter a valid email address" }, cmessage: { required: "Please enter a message" }, }, submitHandler: function(){ jQuery(".loading").show(); jQuery(".error1").hide(); var postData = jQuery("#signupForm").serializeArray(); var formURL = "ajax/contacts.php"; jQuery.ajax( { url : formURL, type: "POST", data : postData, success:function(data) { jQuery(".loading").hide(); jQuery(".success").show(); jQuery("html, body").animate({ scrollTop: 0 }, "slow"); jQuery('#signupForm')[0].reset(); } }); }, errorClass: "fieldError", }); jQuery("#registrationForm").validate( { rules: { fullname: "required", username: { required: true, email: true }, password: { required: true, minlength: 5 }, confirm_password: { required: true, minlength: 5, equalTo: "#password" } }, messages: { fullname: "Please enter your name", username: { required: "Please enter a valid email address", email: "Please enter a valid email address" }, password: { required: "Please provide a password", minlength: "Your password must be at least 5 characters long" }, confirm_password: { required: "Please provide a password", minlength: "Your password must be at least 5 characters long", equalTo: "Please enter the same password as above" } }, submitHandler: function(){ jQuery(".loading").show(); jQuery(".error1").hide(); var postData = jQuery("#registrationForm").serializeArray(); var formURL = "ajax/registration.php"; jQuery.ajax( { url : formURL, type: "POST", data : postData, success:function(data) { jQuery(".loading").hide(); jQuery("html, body").animate({ scrollTop: 0 }, "slow"); //$('#signupForm')[0].reset(); if(data.trim()=="0"){ jQuery(".error1").show(); }else{ jQuery(".success").show(); jQuery('#registrationForm')[0].reset(); } } }); }, errorClass: "fieldError", }); });
x server on