Forum: JavaScript and Client-Side Browser Scripting
Jun 14th, 2006, 10:20 AM
|
|
Replies: 9
Views: 477
Exactly.
Putting such large animations (6.2MB)...
Exactly.
Putting such large animations (6.2MB) :eek: Makes the website slower and it is against good website designing rules. It is possible but it will take a lot of bandwidth and most of the...
|
Forum: C
Mar 29th, 2006, 8:33 PM
|
|
Replies: 5
Views: 220
I wrote this program to test whether the sting...
I wrote this program to test whether the sting ends with '\0'. I noticed that there is some problem with this part (I was trying another program that is a bigger one. That program is posted below). I...
|
Forum: C
Mar 29th, 2006, 6:23 AM
|
|
Replies: 5
Views: 220
Problem with strings
This program is not terminating. Can anyone tell me what is the problem with the code.
#include<Stdio.h>
#include<String.h>
void main()
{
int i=0;
char str1[10];
|
Forum: JavaScript and Client-Side Browser Scripting
Mar 13th, 2006, 9:12 AM
|
|
Replies: 13
Views: 409
|
Forum: JavaScript and Client-Side Browser Scripting
Mar 13th, 2006, 8:37 AM
|
|
Replies: 13
Views: 409
|
Forum: JavaScript and Client-Side Browser Scripting
Mar 13th, 2006, 8:29 AM
|
|
Replies: 13
Views: 409
|
Forum: JavaScript and Client-Side Browser Scripting
Mar 13th, 2006, 8:21 AM
|
|
Replies: 13
Views: 409
|
Forum: JavaScript and Client-Side Browser Scripting
Mar 13th, 2006, 8:14 AM
|
|
Replies: 13
Views: 409
|
Forum: JavaScript and Client-Side Browser Scripting
Mar 13th, 2006, 8:10 AM
|
|
Replies: 13
Views: 409
|
Forum: JavaScript and Client-Side Browser Scripting
Mar 13th, 2006, 7:39 AM
|
|
Replies: 13
Views: 409
|
Forum: JavaScript and Client-Side Browser Scripting
Mar 13th, 2006, 7:03 AM
|
|
Replies: 13
Views: 409
To check upper case you must check the ascii...
To check upper case you must check the ascii value of it. I.e checking the ascii value and if it is in between 32 and some number then it will be in upper case. This must be done to all the...
|
Forum: JavaScript and Client-Side Browser Scripting
Mar 13th, 2006, 6:58 AM
|
|
Replies: 6
Views: 285
|
Forum: Coder's Corner Lounge
Mar 9th, 2006, 9:06 PM
|
|
Replies: 34
Views: 643
The Aminda...
The Aminda Simputer
http://www.picopeta.com/
http://www.picopeta.com/showcase/index.php
|
Forum: Bash / Shell Scripting
Mar 8th, 2006, 2:39 AM
|
|
Replies: 4
Views: 422
|
Forum: JavaScript and Client-Side Browser Scripting
Mar 7th, 2006, 8:57 AM
|
|
Replies: 4
Views: 244
|
Forum: JavaScript and Client-Side Browser Scripting
Mar 7th, 2006, 5:20 AM
|
|
Replies: 4
Views: 244
|
Forum: JavaScript and Client-Side Browser Scripting
Mar 7th, 2006, 4:32 AM
|
|
Replies: 4
Views: 244
Calculator
<html>
<head>
<title>
Calculator
</title>
<body bgcolor="pink">
<script language="javascript">
function add()
{
var i=0;
|
Forum: Coder's Corner Lounge
Mar 7th, 2006, 3:48 AM
|
|
Replies: 64
Views: 1,226
|
Forum: Community Introductions
Mar 6th, 2006, 10:26 PM
|
|
Replies: 15
Views: 310
|
Forum: Coder's Corner Lounge
Mar 6th, 2006, 10:19 PM
|
|
Replies: 302
Views: 6,903
|
Forum: Other Scripting Languages
Mar 6th, 2006, 10:12 PM
|
|
Replies: 11
Views: 458
|
Forum: JavaScript and Client-Side Browser Scripting
Mar 6th, 2006, 10:01 PM
|
|
Replies: 6
Views: 285
To name the text box automatically
Is it possible to name the text boxes that are created automatically and how to do it?
ex:
for(i=0;i<;i++)
{
document.write('<input type="text" name=?>');
}
|
Forum: JavaScript and Client-Side Browser Scripting
Feb 26th, 2006, 12:22 AM
|
|
Replies: 6
Views: 266
The problem which I am trying to solve is this...
The problem which I am trying to solve is this one.
Design a web page that accepts a matrix as input and computes its transpose. The web page should have two text boxes and a submit button labelled...
|
Forum: JavaScript and Client-Side Browser Scripting
Feb 23rd, 2006, 3:09 AM
|
|
Replies: 6
Views: 266
Thanks a lot. The code is working fine and I...
Thanks a lot. The code is working fine and I tried some of the other HTML codes like <p></p> between the document.write and it is working. So I think that most of the html codes can be run using the...
|
Forum: Coder's Corner Lounge
Feb 22nd, 2006, 10:04 PM
|
|
Replies: 302
Views: 6,903
I am a Hindu. Hinduism has its beauty and...
I am a Hindu. Hinduism has its beauty and restrictions. But overall it is a religion that gives immense freedom. Even to believe in god or not. Still one can be a hindu. Regligious wise the...
|
Forum: JavaScript and Client-Side Browser Scripting
Feb 22nd, 2006, 9:56 PM
|
|
Replies: 6
Views: 266
|
Forum: JavaScript and Client-Side Browser Scripting
Feb 22nd, 2006, 8:57 AM
|
|
Replies: 6
Views: 266
Problem to create a textbox automatically
Hello Friends, I am unable to create a webpage in which I can create input type automatically or the number of times.
like
<code>
for(i=0;i<2;i++)
{
<input type="text">
}
</code>
|
Forum: HTML / XHTML / CSS
Jan 28th, 2006, 1:40 AM
|
|
Replies: 11
Views: 373
|
Forum: HTML / XHTML / CSS
Jan 28th, 2006, 1:40 AM
|
|
Replies: 11
Views: 373
<html>
<head>
<script...
<html>
<head>
<script language="javascript">
function openURL()
{
selInd = document.theForm.list.selectedIndex;
goURL = document.theForm.list.options[selInd].value;
top.location.href = goURL;
|
Forum: JavaScript and Client-Side Browser Scripting
Jan 7th, 2006, 11:59 PM
|
|
Replies: 5
Views: 315
<html>
<head>
<title>Programming...
<html>
<head>
<title>Programming forum
</title>
</head>
<script language="javascript">
document.write("ENTER YOUR COMMENT");
function valuetest()
{
|
Forum: C
Nov 2nd, 2005, 1:01 AM
|
|
Replies: 21
Views: 457
|
Forum: C
Nov 1st, 2005, 12:32 AM
|
|
Replies: 10
Views: 329
|
Forum: C
Oct 31st, 2005, 9:50 AM
|
|
Replies: 10
Views: 329
|
Forum: C
Oct 31st, 2005, 9:24 AM
|
|
Replies: 10
Views: 348
|