javascript - How do I make a jquery modal always centered on the page? -


i've see problem jquery modal popup boxes. i'm wondering, there jquery code keep jquery modal centered in page? know can achieved pure javascript code jquery?

if want center element jquery, try this;

var browserw = $(window).width(); var centerele = (browserw - 960) / 2; //if ur website design's width 960 $('.centeredele').css({'left':centerele + 'px'});//or margin-left, ur choise 

Comments

Popular posts from this blog

JQuery Autocomplete without using label, value, id -

c++ - Accessing inactive union member and undefined behavior? -

JAVA - what is the difference between void and boolean methods? -