Vivek Dragon
Vivek Dragon

Reputation: 2248

flash lightbox to full screen a div

I want to use full screen function in IE for a single <div> tag in a webpage. I have already tried link for IE. But it makes entire screen as full screen I just want to single <div> tag to be highlighted onclicking the button.

When I heard that flash can achieve that function I got a reference over here. I just want to use this to work on my IE6. If anyone have known how to do this help me achieve my target.

If anyone has any suggestion??

Upvotes: 1

Views: 382

Answers (2)

Karthikeyan.A
Karthikeyan.A

Reputation: 108

Check this fiddle http://jsfiddle.net/Tv2pP/7/. Make the div position relative and change its width to 100%

Upvotes: 2

SandhanaMurali
SandhanaMurali

Reputation: 149

Easy way to understand your concept is use

position:relative

and

width:100%

to your div

Upvotes: 0

Related Questions