hi
for entire page use a table having 1 row and 3 column, and put
on first row - LeftNav
on second row - Content
on third row - RightNav
here make invisible the border of tables through css formating.
hi
for entire page use a table having 1 row and 3 column, and put
on first row - LeftNav
on second row - Content
on third row - RightNav
here make invisible the border of tables through css formating.
for each <li> put closing </li> and also for each <h2> put closing </h2> tag.
try notepad++ or editplus
suppose u'r form name is frm1, inside frm1 one textbox is there name text1 , then to retrieve value of text1 u should write code:
var textStr=document.frm1.text1.value
nice answer Salem :)
can u post u'r code.
Normally scripting languages are interpreted i.e. run on a virtual OS while most of the Programming language are compiled .
it will not work on onload event as dom tree has not been yet formed.
try this:
---------
suppose function name is myFun(); then call it inside script block just after body tag , like this
<body>
<script>
myFun();
</script>
</body>
hi
try my solution...or tell me if any prblm in that
dom approach has its own beauty.........it has solved many problems..
video files are very heavy i.e. of large size, will them self take time to load, better use gif file, instead.
code for html file(it didnt came properly):
<div id='mu123'>
<table cellspacing="0" cellpadding="0" id="nav_bar" >
................
................
................
</table>
</div>
Hi
whenever u r designing u'r website, alway see that in IE , FF ,Op like browser so that later u dont have problem.
Solution:
----------
do this
1.put ur table nav_bar inside a div element with id mu123
2. give style to mu123 as:
text-align:center
3.see the result
in html file
------------
<div id='mu123'>
<table cellspacing="0" cellpadding="0" id="nav_bar" >
................
................
................
in css file
----------
#mu123{
text-align:center;
}
"It's kind of fun to do the impossible."
- Walt Disney
"When going gets tough ... the tough gets going."
"When asked if my cup is half-full or half-empty my only response is that I am thankful I have a cup." :)
Hi
u can do this with following code.
put all the text boxes in side a div element. and follow the example below:
<html>
<head>
<script language='javascript'>
function getValues()
{
var tc=document.getElementById('allTxt');
var txtBoxes=tc.getElementsByTagName('input');//txtBoxes is array of input elements inside div:allTxt
var str="";
var myArray=new Array();
for(var i=0;i<4;i++)
{
//here u can put code to init value of array with data of text box
str=str+' '+txtBoxes[i].value;
myArray[i]=txtBoxes[i].value;
}
alert(str);
}
</script>
</head>
<body>
<div id='error'>Hi21 </div>
<div id='allTxt'>
<input type = text name = item1 value = "" id='t1'>
<input type = text name = item2 value = "">
<input type = text name = item3 value = "">
<input type = text name = item4 value = "">
</div>
<input type=button onClick="getValues();"/>
</body>
<html>
if it is just to learn then u can carry on with u'r game development idea, but if its is for commercial purpose then just arrange budget.
Hi
it may be a malware attack. try these site,(list i got from other forum)
http://aumha.org/a/parasite.htm
http://aumha.org/a/quickfix.htm
http://www.elephantboycomputers.com/page2.html#Removing_Malware
http://mvps.org/winhelp2002/unwanted.htm
http://inetexplorer.mvps.org/darnit.html
http://www.mvps.org/sramesh2k/Malware_Defence.htm
I think its new feature in browser technology developed by "Microsoft". :)
try to use Mozilla or Opera.
Hi
nice idea but i think passmark is correct...
I think I m both...:)
its nice sarehu...
"Every second billions of innocent assembler instructions are executed all over the world. Inhumanly they are put on a pipeline and executed with no regard to their feelings. The illegal instructions are spared, although they should be executed".
Hi,
u can try following:
1. making proxy server.
2. a threaded server.
3. a program which watch registry access of currently running process.
plz give the complete code along with html code...
Hi
Solve this:
write a program to generate its own source code.
(plz dnt come up with solution like, reading source file, etc.)
http://en.wikipedia.org/wiki/Integer_factorization
Fortune and glory will be yours if you can solve this one.
that's really nice, many ppl are working on that...:)
hi u dont want loop then try this:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Example</title>
</head>
<body>
<script type="text/javascript">
var count=0;
(function recTest()
{
var ans = prompt("Enter either 1 or 2.");
if(!ans || (ans != '1' && ans != '2'))
{
alert("You entered an invalid choice !");
count++;
}
else
{
alert("You entered " + ans);
count=0;
}
if(count<=1)
recTest();
})();
</script>
</body>
</html>
It should be noted that no ethically-trained software engineer would ever consent to write a DestroyBaghdad procedure. Basic professional ethics would instead require him to write a DestroyCity procedure, to which Baghdad could be given as a parameter.
-------Nathaniel S Borenstein
Hi all
Post some challenging programming question, which are really hard to solve...
Hi,
I hope following is solution for u'r trouble,
(i have modify ~s.o.s~ code)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Example</title>
</head>
<body>
<script type="text/javascript">
var loopTime=0;
(function doSomething()
{
while(true) {
var ans = prompt("Enter either 1 or 2.");
if(!ans || (ans != '1' && ans != '2')) {
alert("You entered an invalid choice. Exitting...");
if(loopTime>0)
break;
loopTime=1;
}
else
{
loopTime=0;
alert("You entered " + ans);
}
}
})();
</script>
</body>
</html>