Click here to Skip to main content
15,902,275 members
Home / Discussions / Web Development
   

Web Development

 
QuestionThe transparent color in hex and/or rgb? Pin
QzRz30-Mar-06 22:43
QzRz30-Mar-06 22:43 
QuestionThe transparent color in hex and/or rgb? Pin
QzRz30-Mar-06 22:43
QzRz30-Mar-06 22:43 
QuestionHow Pin
NurZaara30-Mar-06 22:35
NurZaara30-Mar-06 22:35 
QuestionCalling concurrent webservices on IIS Pin
Rob Philpott30-Mar-06 21:49
Rob Philpott30-Mar-06 21:49 
Questionhow to work with html tables in creating user controls in asp.net Pin
Sarkun Raj. J30-Mar-06 20:57
Sarkun Raj. J30-Mar-06 20:57 
AnswerRe: how to work with html tables in creating user controls in asp.net Pin
Julianne_juju31-Mar-06 15:39
Julianne_juju31-Mar-06 15:39 
GeneralRe: how to work with html tables in creating user controls in asp.net Pin
Sarkun Raj. J10-Jun-09 6:00
Sarkun Raj. J10-Jun-09 6:00 
QuestionResizing object in Firefox Pin
QuaKx30-Mar-06 20:32
QuaKx30-Mar-06 20:32 
Hi!

I have a problem with an embedded flash object.
The thing is that I never want the object to be less then 750x850 pixles.
When the broswer window is less then that I want the scrollbars to be shown on the broswer. Otherwise it should stretch to the window size.

So after resize I check the width of the page and then I do the following...

var bookReader = document.getElementById('bookReader');
if (bookReader == null)
return 0;

//If the width is less then 750 or the height is less then 850 we need scrollbars
if (width < 750 || height < 850) {
bookReader.width = 750;
bookReader.height = 850;
} else {
bookReader.style.width = width;
bookReader.style.height = height;
}


This works perfectly in IE but in Firefox the size of the object is it's initial size (750x850)

Any suggestions?
AnswerRe: Resizing object in Firefox Pin
Vasudevan Deepak Kumar30-Mar-06 20:54
Vasudevan Deepak Kumar30-Mar-06 20:54 
GeneralRe: Resizing object in Firefox Pin
QuaKx30-Mar-06 22:34
QuaKx30-Mar-06 22:34 
QuestionJavaScript - Not Firing Pin
gmhanna30-Mar-06 17:09
gmhanna30-Mar-06 17:09 
AnswerRe: JavaScript - Not Firing Pin
Vasudevan Deepak Kumar30-Mar-06 20:55
Vasudevan Deepak Kumar30-Mar-06 20:55 
AnswerRe: JavaScript - Not Firing Pin
Guffa31-Mar-06 1:18
Guffa31-Mar-06 1:18 
QuestionPopup HTML Pin
gmhanna30-Mar-06 10:32
gmhanna30-Mar-06 10:32 
AnswerRe: Popup HTML Pin
Guffa30-Mar-06 15:00
Guffa30-Mar-06 15:00 
AnswerRe: Popup HTML Pin
Vasudevan Deepak Kumar30-Mar-06 20:56
Vasudevan Deepak Kumar30-Mar-06 20:56 
GeneralRe: Popup HTML Pin
gmhanna31-Mar-06 4:26
gmhanna31-Mar-06 4:26 
Questionbuzzing buzzzz... Pin
zybernau30-Mar-06 9:07
zybernau30-Mar-06 9:07 
AnswerRe: buzzing buzzzz... Pin
Sushant_Mathur30-Mar-06 19:23
Sushant_Mathur30-Mar-06 19:23 
QuestionRe: buzzing buzzzz... Pin
zybernau31-Mar-06 3:55
zybernau31-Mar-06 3:55 
QuestionFilebrowser Pin
Larza12330-Mar-06 0:16
Larza12330-Mar-06 0:16 
AnswerRe: Filebrowser Pin
CWIZO30-Mar-06 10:10
CWIZO30-Mar-06 10:10 
GeneralRe: Filebrowser Pin
Larza12330-Mar-06 20:12
Larza12330-Mar-06 20:12 
GeneralRe: Filebrowser Pin
CWIZO30-Mar-06 20:16
CWIZO30-Mar-06 20:16 
QuestionHelp!!!Problem with uploaded file.. Pin
Sushant_Mathur29-Mar-06 22:42
Sushant_Mathur29-Mar-06 22:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.