DangerDev 107 Posting Pro in Training

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.

DangerDev 107 Posting Pro in Training

for each <li> put closing </li> and also for each <h2> put closing </h2> tag.

DangerDev 107 Posting Pro in Training

try notepad++ or editplus

DangerDev 107 Posting Pro in Training

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
DangerDev 107 Posting Pro in Training

nice answer Salem :)

DangerDev 107 Posting Pro in Training

can u post u'r code.

DangerDev 107 Posting Pro in Training

Normally scripting languages are interpreted i.e. run on a virtual OS while most of the Programming language are compiled .

DangerDev 107 Posting Pro in Training

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>
DangerDev 107 Posting Pro in Training

hi
try my solution...or tell me if any prblm in that

DangerDev 107 Posting Pro in Training

dom approach has its own beauty.........it has solved many problems..

DangerDev 107 Posting Pro in Training

video files are very heavy i.e. of large size, will them self take time to load, better use gif file, instead.

DangerDev 107 Posting Pro in Training
DangerDev 107 Posting Pro in Training

code for html file(it didnt came properly):

<div id='mu123'>
<table  cellspacing="0" cellpadding="0" id="nav_bar" >
................
................
................
</table>
</div>
DangerDev 107 Posting Pro in Training

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;
}
DangerDev 107 Posting Pro in Training

"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." :)

DangerDev 107 Posting Pro in Training

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>
DangerDev 107 Posting Pro in Training

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.

DangerDev 107 Posting Pro in Training

:)

DangerDev 107 Posting Pro in Training
DangerDev 107 Posting Pro in Training

I think its new feature in browser technology developed by "Microsoft". :)
try to use Mozilla or Opera.

DangerDev 107 Posting Pro in Training

Hi
nice idea but i think passmark is correct...

DangerDev 107 Posting Pro in Training

I think I m both...:)

DangerDev 107 Posting Pro in Training

its nice sarehu...

DangerDev 107 Posting Pro in Training

"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".

DangerDev 107 Posting Pro in Training

Hi,
u can try following:
1. making proxy server.
2. a threaded server.
3. a program which watch registry access of currently running process.

DangerDev 107 Posting Pro in Training

plz give the complete code along with html code...

DangerDev 107 Posting Pro in Training

Hi
Solve this:
write a program to generate its own source code.
(plz dnt come up with solution like, reading source file, etc.)

DangerDev 107 Posting Pro in Training

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...:)

DangerDev 107 Posting Pro in Training

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>
DangerDev 107 Posting Pro in Training

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

ZZucker commented: excellent observation +1
DangerDev 107 Posting Pro in Training

Hi all
Post some challenging programming question, which are really hard to solve...

DangerDev 107 Posting Pro in Training

put 5 spaces,,,,,

DangerDev 107 Posting Pro in Training

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>