Click here to Skip to main content
15,925,661 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: HTML layout Pin
raj_marthy11-Aug-05 12:38
raj_marthy11-Aug-05 12:38 
GeneralRe: HTML layout Pin
raj_marthy11-Aug-05 12:39
raj_marthy11-Aug-05 12:39 
GeneralRe: HTML layout Pin
fakefur11-Aug-05 13:48
fakefur11-Aug-05 13:48 
GeneralRe: HTML layout Pin
raj_marthy11-Aug-05 18:21
raj_marthy11-Aug-05 18:21 
GeneralRe: HTML layout Pin
fakefur12-Aug-05 15:02
fakefur12-Aug-05 15:02 
GeneralRe: HTML layout Pin
Vecta15-Aug-05 1:12
Vecta15-Aug-05 1:12 
GeneralRe: HTML layout Pin
raj_marthy15-Aug-05 8:41
raj_marthy15-Aug-05 8:41 
Generalcopy file question Pin
trigger9111-Aug-05 11:17
susstrigger9111-Aug-05 11:17 
GeneralRe: copy file question Pin
Vasudevan Deepak Kumar14-Aug-05 2:17
Vasudevan Deepak Kumar14-Aug-05 2:17 
QuestionIs it possible to know when an object becomes visible? Pin
Member 166476111-Aug-05 9:06
Member 166476111-Aug-05 9:06 
AnswerRe: Is it possible to know when an object becomes visible? Pin
fakefur11-Aug-05 13:49
fakefur11-Aug-05 13:49 
GeneralDomain Registration Pin
Aqueel11-Aug-05 8:02
Aqueel11-Aug-05 8:02 
GeneralRe: Domain Registration Pin
Tim Zorn20-Aug-05 12:43
Tim Zorn20-Aug-05 12:43 
GeneralDomain Registration Pin
Aqueel11-Aug-05 8:02
Aqueel11-Aug-05 8:02 
GeneralRe: Domain Registration Pin
Member 166476111-Aug-05 9:08
Member 166476111-Aug-05 9:08 
GeneralRe: Domain Registration Pin
Michael Hendrickx17-Aug-05 6:46
Michael Hendrickx17-Aug-05 6:46 
GeneralHTML Table Pin
cberam10-Aug-05 23:39
cberam10-Aug-05 23:39 
GeneralRe: HTML Table Pin
fakefur11-Aug-05 13:53
fakefur11-Aug-05 13:53 
GeneralProblem with CSS Pin
iamalik10-Aug-05 20:46
professionaliamalik10-Aug-05 20:46 
GeneralRe: Problem with CSS Pin
Guffa11-Aug-05 0:51
Guffa11-Aug-05 0:51 
Questionurl syntax and firefox? Pin
zoid ! 10-Aug-05 10:05
zoid ! 10-Aug-05 10:05 
GeneralChange window attribut from a URL Pin
Spaz8010-Aug-05 3:45
Spaz8010-Aug-05 3:45 
GeneralRe: Change window attribut from a URL Pin
Spaz8010-Aug-05 3:50
Spaz8010-Aug-05 3:50 
GeneralRe: Change window attribut from a URL Pin
JKroschel10-Aug-05 4:23
JKroschel10-Aug-05 4:23 
I don't know if you mean pop-ups or just the next page. If you are looking to change a pop up, take a look at chapter seven of http://www.javascriptworld.com/scripts/index.html.
If you want to change the appearance of the next page depending on what you click on, you could do that on the back end with ASP or something like that. The script would then generate custom CSS based on what the link asked for. For example:
/page.asp?layout=1
vs.
/page.asp?layout=2

In your asp code, you would have something like:

<%
layout=Request.QueryString("layout")
If layout = 1 then
%>
<style>
(first style sheet)
</style>
<%
Else
%>
<style>
(second style sheet)
</style>
<%
End If
%>
GeneralRe: Change window attribut from a URL Pin
Spaz8010-Aug-05 4:33
Spaz8010-Aug-05 4:33 

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.