QUOTE(taf @ 20 Aug, 2007 - 11:15 PM)

hi! just wanna know
1.the coding to pop- up small window when a user click on the link button
<a href="info/info.html?1.5.2&1.html" class="cc">e-Account</a>
2. is it possible to put an action in the textfield that will enable user to link to the other pages?
<form id="form1" name="form1" method="post" action="">
<label for="textarea"></label>
<textarea name="textarea" id="textarea">link.html</textarea>
</form>
First, moderators please move this to HTML/CSS/JavaScript forum
Ok, now:
1) To open a window, use:
CODE
<script type = "text/javascript">
function pop(){
window.open("http://www.somesite.com", 0, 'width=600, height=600').
}
</script>
<a href = "java script:pop()" class = "cc">Account</a>
Remove the space in "java script:pop()" because the server of DIC seems to change it to the wrong form.
2) Please explain your question a bit more, and I will help you with this one.
This post has been edited by alpha02: 20 Aug, 2007 - 10:27 PM