Forum: HTML and CSS Mar 5th, 2008 |
| Replies: 5 Views: 986 to create a <iframe> add this code in your content fie ...
<iframe id="iframe1" width="500" height="300" align="right" scrolling="auto" src="www.yahoo.com"></iframe>
u can change the src to the... |
Forum: HTML and CSS Mar 5th, 2008 |
| Replies: 6 Views: 4,634 Using "cmd prompt"you can always ping the host name and get the IP of the server and try connecting to it with the given user name & password... |
Forum: JavaScript / DHTML / AJAX Mar 4th, 2008 |
| Replies: 6 Views: 3,318 Check this code...u can use innerHTML instead of "Alert box"
<html>
<head>
<style>
.message
{font-family:Arial, ;font-size:15px;color:#FF0000;
}
</style> |
Forum: JavaScript / DHTML / AJAX Feb 28th, 2008 |
| Replies: 9 Views: 7,515 Try this...it works both in IE & FF..with onClick as mouseEvent
function changeBgColor(){
var field=document.getElementById("one");
var field2=document.getElementById("firstname");
... |
Forum: JavaScript / DHTML / AJAX Feb 27th, 2008 |
| Replies: 6 Views: 17,572 The below code what you have suggested earlier doesnt work...
<script>function changeStyle(id, newClass){
document.getElementById(id).style.className = newClass;}
</script>
... |