Click here to Skip to main content
15,891,905 members
Home / Discussions / Web Development
   

Web Development

 
GeneralSIzing the height of the html drop down box in IE Pin
phil71731-Jan-05 22:58
phil71731-Jan-05 22:58 
GeneralRe: SIzing the height of the html drop down box in IE Pin
Ted Ferenc1-Feb-05 1:19
Ted Ferenc1-Feb-05 1:19 
GeneralRe: SIzing the height of the html drop down box in IE Pin
phil7171-Feb-05 1:48
phil7171-Feb-05 1:48 
GeneralRe: SIzing the height of the html drop down box in IE Pin
Ted Ferenc1-Feb-05 6:53
Ted Ferenc1-Feb-05 6:53 
GeneralRe: SIzing the height of the html drop down box in IE Pin
phil7171-Feb-05 22:16
phil7171-Feb-05 22:16 
GeneralRe: SIzing the height of the html drop down box in IE Pin
Ted Ferenc1-Feb-05 22:28
Ted Ferenc1-Feb-05 22:28 
GeneralJavascript executer Pin
shaiba31-Jan-05 21:15
shaiba31-Jan-05 21:15 
GeneralRe: Javascript executer Pin
piers72-Feb-05 13:49
piers72-Feb-05 13:49 
Use IE.
No seriously. I'm assuming what you're after is an HTML dump of the document's DOM *after* any client-side javascript changes have taken effect. 'View Source' won't do that for you, but it's perfectly possible to write a tiny little scriplet that just dump's the document.body.innerHtml into another browser window.

Here's an example (save it as temp.htm or something, and look at it in your browser):
<html>
<body>
<p>Literal para 'in flow'</p>
<script language="javascript">
	document.write("<p>para produced from document.write()</p>");
	var node	=document.createElement("p");
	node.innerText	="para produced from DOM insert";
	document.body.appendChild(node);
</script>

<a href="javascript:alert(document.body.innerHTML)">View DOM source</a>
<--This link above broken by codeproject renderer - put colon back-->
</body>
</html>

GeneralJavascript executer! my problem is different Pin
shaiba3-Feb-05 18:41
shaiba3-Feb-05 18:41 
QuestionHow to build menu in personal website Pin
Mekong River29-Jan-05 16:03
Mekong River29-Jan-05 16:03 
AnswerRe: How to build menu in personal website Pin
Mitch F.30-Jan-05 9:17
Mitch F.30-Jan-05 9:17 
QuestionWhen I used &quot;application/vnd.ms-excel&quot; to export table's content to Excel file. It would be showed between &quot;Confused&quot; words and normally words randomly.How can i sloved it? Pin
miaomiaoga28-Jan-05 9:32
miaomiaoga28-Jan-05 9:32 
Questionhtml and java in c? Pin
porac6928-Jan-05 7:28
porac6928-Jan-05 7:28 
AnswerRe: html and java in c? Pin
Colin Angus Mackay30-Jan-05 12:55
Colin Angus Mackay30-Jan-05 12:55 
GeneralGooglebot removing querystring values Pin
suzyb28-Jan-05 4:55
suzyb28-Jan-05 4:55 
GeneralRe: Googlebot removing querystring values Pin
DavidNohejl28-Jan-05 6:33
DavidNohejl28-Jan-05 6:33 
GeneralRe: Googlebot removing querystring values Pin
Colin Angus Mackay30-Jan-05 12:57
Colin Angus Mackay30-Jan-05 12:57 
GeneralRe: Googlebot removing querystring values Pin
suzyb30-Jan-05 22:21
suzyb30-Jan-05 22:21 
GeneralRe: Googlebot removing querystring values Pin
raouls30-Jan-05 23:08
raouls30-Jan-05 23:08 
GeneralPicture Databases Pin
mavgoose28-Jan-05 0:58
mavgoose28-Jan-05 0:58 
GeneralRe: Picture Databases Pin
David Salter28-Jan-05 5:48
David Salter28-Jan-05 5:48 
GeneralRe: Picture Databases Pin
raouls30-Jan-05 19:29
raouls30-Jan-05 19:29 
Generalsubmit asp/asp.net form and save to word Pin
Calvin_00727-Jan-05 8:50
Calvin_00727-Jan-05 8:50 
GeneralRe: submit asp/asp.net form and save to word Pin
tojamismis27-Jan-05 18:07
tojamismis27-Jan-05 18:07 
GeneralCOM object in javascript Pin
mtone27-Jan-05 6:28
mtone27-Jan-05 6:28 

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.