Click here to Skip to main content
15,917,177 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Tree view like the code project forum Pin
alexey N12-Apr-06 17:31
alexey N12-Apr-06 17:31 
Remove space in "onclick" If I post it without quotes it'll be replaced by "removed" word. Like in this:


<html>
<head>
<script language="JavaScript" type="text/javascript">
function Expand(name)
{
var elem = document.getElementById(name);
if (elem.style.display == "none")
{
elem.style.display = "block";

}
else
{
elem.style.display = "none";
}
}
</script>
</head>
<body>
<Table >
<tr>
<td>
<a href="#" onclick ="Expand('content');">click this</a>
</td>
</tr>

<tr>
<td>
<table id="content">
<tr>
<td>
line1<br/>
line2<br/>
line3
</td>
</tr>
</table>
</td>
</tr>

</body>

</html>


GeneralRe: Tree view like the code project forum Pin
2hdass13-Apr-06 14:10
2hdass13-Apr-06 14:10 
GeneralRe: Tree view like the code project forum Pin
alexey N13-Apr-06 17:32
alexey N13-Apr-06 17:32 
QuestionListBox value Pin
ekendricks6-Apr-06 6:17
ekendricks6-Apr-06 6:17 
AnswerRe: ListBox value Pin
cdengler6-Apr-06 8:41
cdengler6-Apr-06 8:41 
GeneralRe: ListBox value Pin
ekendricks6-Apr-06 9:07
ekendricks6-Apr-06 9:07 
GeneralRe: ListBox value Pin
cdengler10-Apr-06 8:47
cdengler10-Apr-06 8:47 
GeneralRe: ListBox value Pin
ekendricks10-Apr-06 9:02
ekendricks10-Apr-06 9:02 
QuestionISAPI DLL under WinCE Registry Pin
RamL5-Apr-06 23:04
RamL5-Apr-06 23:04 
Questionmiddle web service Pin
hung_ngole5-Apr-06 16:22
hung_ngole5-Apr-06 16:22 
AnswerRe: middle web service Pin
cdengler10-Apr-06 8:51
cdengler10-Apr-06 8:51 
Questionquick javascript question Pin
Sam 20065-Apr-06 12:18
Sam 20065-Apr-06 12:18 
AnswerRe: quick javascript question Pin
smadan5-Apr-06 21:37
smadan5-Apr-06 21:37 
QuestionASP.net 2.0 Pin
felopater5-Apr-06 5:44
felopater5-Apr-06 5:44 
Question.net Language Interoperability Pin
smadan5-Apr-06 0:14
smadan5-Apr-06 0:14 
QuestionRe: .net Language Interoperability Pin
Sarvesvara (BVKS) Dasa5-Apr-06 21:19
Sarvesvara (BVKS) Dasa5-Apr-06 21:19 
AnswerRe: .net Language Interoperability Pin
smadan5-Apr-06 21:29
smadan5-Apr-06 21:29 
GeneralRe: .net Language Interoperability Pin
RichardGrimmer11-Apr-06 7:25
RichardGrimmer11-Apr-06 7:25 
Questionhow to add only vertical scrollbar Pin
Chetan.visodiya5-Apr-06 0:13
Chetan.visodiya5-Apr-06 0:13 
QuestionRemove scroll bar from the page Pin
Chetan.visodiya5-Apr-06 0:10
Chetan.visodiya5-Apr-06 0:10 
AnswerRe: Remove scroll bar from the page Pin
cdengler6-Apr-06 8:39
cdengler6-Apr-06 8:39 
QuestionXML in Flash Pin
Anaha4-Apr-06 22:17
Anaha4-Apr-06 22:17 
QuestionServer.MapPath Pin
Larza1234-Apr-06 22:13
Larza1234-Apr-06 22:13 
AnswerRe: Server.MapPath Pin
Guffa4-Apr-06 23:42
Guffa4-Apr-06 23:42 
GeneralRe: Server.MapPath Pin
Larza1235-Apr-06 20:45
Larza1235-Apr-06 20:45 

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.