Sultan
Sultan

Reputation: 13

How to increase light box width using ajax or jquery?

I have a small code

$(".example8").colorbox({width:"50%", inline:true, href:"#inline_example1"});

It is ajax / jquery code for light box. Here I have width 50%. It is ok for desktop. But in small device I need 100% width. So How to increase width for mobile ? I need to keep 50% for desktop and want to increse width for small device.

Upvotes: 0

Views: 52

Answers (1)

n1kkou
n1kkou

Reputation: 3142

var screenSize = $(window).width();
if(screenSize<500){
  $(".example8").colorbox({width:"90%"});
}

Upvotes: 1

Related Questions