(function($) { $(window).bind("load", function() { start(); }); })(jQuery); window.onresize = function(event) { render(); }; function go1(t) { window.location="https://www.examination.drmojri.com/"+t.replace("&page=", "/").replace("&id=", "/"); } function render(){ $(".square").css("max-height",$(".square").css("width")); $(".square").css("min-height",$(".square").css("width")); $(".slider").css("overflow","hidden"); var center_verticals=$(".center_vertical"); //center_verticals.hide(); console.log(center_verticals.length); center_verticals.each(function(){ var parent=$(this).parent(); p_height=parent.css("height").replace("px",""); t_height=$(this).css("height").replace("px",""); p_padding=parent.css("padding-top").replace("px",""); t_padding=$(this).css("padding-top").replace("px",""); var margin_top=(((p_height-t_height)/2)-p_padding)-t_padding; $(this).css("margin-top",margin_top+"px"); //console.log($(this)); //console.log(p_height+":"+t_height+":"+margin_top); }); } function start(){ $(".loader").fadeOut(); $('input').keypress(function(e){ if(e.keyCode==13){ $(this).parent().parent().parent().find(".default").click(); } }); $('.sidenav').sidenav({edge:'right'}); render(); }