Search Results

Showing results 1 to 34 of 34
Search took 0.01 seconds.
Search: Posts Made By: Traicey ; Forum: JavaScript / DHTML / AJAX and child forums
Forum: JavaScript / DHTML / AJAX Mar 25th, 2009
Replies: 0
Views: 689
Posted By Traicey
Hi guys

I have 5 images which are hyperlink, so each time I click their color should change to yellow until I click another hyperlink image and also they need to change their height too, I was...
Forum: JavaScript / DHTML / AJAX Jul 9th, 2008
Replies: 8
Views: 1,335
Posted By Traicey
>>>can we use javascript to achieve this functionality.

Yes thats usually client side validation but some of the text boxes will need to be validated on the server side such as checking for...
Forum: JavaScript / DHTML / AJAX Jul 1st, 2008
Replies: 5
Views: 1,373
Posted By Traicey
1. You dont need to declare any boolean variable not unless you are validating Radio Button, check box or dropdown list, but for text boxes u dont need to do that

U can do it either this way ...
Forum: JavaScript / DHTML / AJAX Jun 27th, 2008
Replies: 2
Views: 1,536
Posted By Traicey
Oh I forgot...... for drop down list you need to change
this line of code
<option value="selected">SELECT</option>
to this
<option value="0"SELECTED>SELECT</option>

And to validate would be...
Forum: JavaScript / DHTML / AJAX Jun 27th, 2008
Replies: 2
Views: 1,536
Posted By Traicey
For the radio button u need to group both radio buttons that means u gona have the same name for both of them u can change this line of code

<input type="radio" name="genderM" value="Male"...
Forum: JavaScript / DHTML / AJAX Jun 23rd, 2008
Replies: 4
Views: 1,015
Posted By Traicey
That might depend on whether u are running client or server side script, coz what I know is, u use the action attribute when u want to run a servicing program when the user submits the form on web...
Forum: JavaScript / DHTML / AJAX May 30th, 2008
Replies: 3
Solved: for loop
Views: 974
Posted By Traicey
The problem could be that you have this OuPut = OutPut + Numbers[i] + "\r"; instead of OutPut = OutPut + Numbers[i] + "\r"; the spelling of your output is wrong before the equal sign maybe if you...
Forum: JavaScript / DHTML / AJAX May 24th, 2008
Replies: 5
Views: 642
Posted By Traicey
Anytime...... anyway I havent forgot about what we talked about in the last few weeks, I hope that u did understant my code coz to tell the truth for me to understand someone's code takes some while...
Forum: JavaScript / DHTML / AJAX May 24th, 2008
Replies: 5
Views: 642
Posted By Traicey
Hey Adiga

Just try the following code if there is something you dont understand feel free to ask someone or me would explain


//JavaScript Code for radio Button

var chkStatus = false;
...
Forum: JavaScript / DHTML / AJAX May 16th, 2008
Replies: 18
Views: 7,088
Posted By Traicey
Thanx for understanding and please cool down soon
Forum: JavaScript / DHTML / AJAX May 16th, 2008
Replies: 18
Views: 7,088
Posted By Traicey
MMMmmm.... thats quite hash and please forgive my mistakes... but for the sake of Daniweb and its Precious fellows lets be civil.... Why... Because

1. I thought I was helping you with ur thread...
Forum: JavaScript / DHTML / AJAX May 16th, 2008
Replies: 18
Views: 7,088
Posted By Traicey
Easy, Easy Tefflox..... All generalizations are wrong, Besides I dont know what ur complaning about (PS... Man invented language to satisfy his deep need to complain) coz U have solved your own...
Forum: JavaScript / DHTML / AJAX May 15th, 2008
Replies: 18
Views: 7,088
Posted By Traicey
What one can say!!!!!

We may rather call it plagiarism than just a plain homework, Anyways Im just glad I dont have to go through all that, mainly trying to fascinate or impress Daniweb's Gurus...
Forum: JavaScript / DHTML / AJAX May 15th, 2008
Replies: 18
Views: 7,088
Posted By Traicey
Well..... if U solved it U can mark it as solved, to eliminate the waste of time ur fellows would waste trying to understand ur complex code
Forum: JavaScript / DHTML / AJAX May 14th, 2008
Replies: 18
Views: 7,088
Posted By Traicey
If I understand you correctly.... U are struggling with validating radiobutton (i.e) U wana make sure that one of them are seleceted well if thats the case, we can attempt to fix by doing the...
Forum: JavaScript / DHTML / AJAX May 13th, 2008
Replies: 3
Views: 1,624
Posted By Traicey
Forum: JavaScript / DHTML / AJAX May 13th, 2008
Replies: 1
Views: 562
Posted By Traicey
Giving you my project wont mean that u gona understand JavaScript or anything less than that...... Why dont u post the specs of ur project then we can take it from there
Forum: JavaScript / DHTML / AJAX May 12th, 2008
Replies: 4
Solved: Login window?
Views: 2,345
Posted By Traicey
Ur welcome :) , Mark it as solved if solved
Forum: JavaScript / DHTML / AJAX May 12th, 2008
Replies: 4
Solved: Login window?
Views: 2,345
Posted By Traicey
U can create ur login page separately and use window.open in ur home page, using javascript or anywhere in the body of ur default home page the following will lead you to the right path

You can...
Forum: JavaScript / DHTML / AJAX May 12th, 2008
Replies: 1
Views: 897
Posted By Traicey
The following code is checking if the text boxes that are named "text" have values
and if thats correct the code returns true and submit the form, all it does is checking if one of the text boxes...
Forum: JavaScript / DHTML / AJAX May 10th, 2008
Replies: 2
Views: 961
Posted By Traicey
U can also try this

/*Validate Date */
var year;
var leap = 0;
var DOB = Date;
if(IsNan(DOB == true))
{
alert(“The DOB must be in the format of “DD/MM/YYYY”)
...
Forum: JavaScript / DHTML / AJAX May 8th, 2008
Replies: 3
Views: 1,063
Posted By Traicey
Not sure if thats what ur looking for and if u mean having text between text boders u can check out the following

<table cellSpacing="3" cellPadding="5" width="365" align="center" border="5" ...
Forum: JavaScript / DHTML / AJAX May 8th, 2008
Replies: 5
Views: 2,062
Posted By Traicey
Adding to that!!!! JavaScript are loosely typed, which means that the programmer does not need to specify the type of data that a variable will store when the programmer declares it, The language...
Forum: JavaScript / DHTML / AJAX May 8th, 2008
Replies: 5
Views: 2,062
Posted By Traicey
As u know that we declare variable in Java Script using var now Im not sure if u want to static cast the variable or what but if thats the case u can do the following

var Num =...
Forum: JavaScript / DHTML / AJAX Apr 22nd, 2008
Replies: 12
Views: 7,803
Posted By Traicey
Im not sure if I get what you are trying to say but to eliminate the verical scroll bar you can rotate the height of the body until it suits your needs. you can achieve that by decreasing the body...
Forum: JavaScript / DHTML / AJAX Apr 11th, 2008
Replies: 1
Views: 728
Posted By Traicey
Having 0 knowledge in Scripts, I have been binded with this huge project that has to rut at server i.e an ASP.... Have heard about the scripts which are JavaScript and VBscript what I dont know is...
Forum: JavaScript / DHTML / AJAX Apr 10th, 2008
Replies: 3
Views: 1,655
Posted By Traicey
So its not really a Javascript but VBscript not that I know but according to my understanding I think you need to use VBScript or C# when dealing with ASP.net and Im not really equiped about VBscript
Forum: JavaScript / DHTML / AJAX Apr 9th, 2008
Replies: 3
Views: 1,655
Posted By Traicey
You can use if statement using ur radio button groups which are, in ur case set1 and set2, and inside them have statements like

And another thing you may post ur code so that we can be aware of...
Forum: JavaScript / DHTML / AJAX Mar 31st, 2008
Replies: 2
Views: 844
Posted By Traicey
The most advantage of JavaScript is that most browsers support javaScript where as only internet explorer support VBScript

The problem about script is that everytime you run them they have to be...
Forum: JavaScript / DHTML / AJAX Mar 28th, 2008
Replies: 3
Views: 890
Posted By Traicey
Anytime... U can mark it as solved now
Forum: JavaScript / DHTML / AJAX Mar 27th, 2008
Replies: 3
Views: 890
Posted By Traicey
I assume that u have ur if statement and return function to where ever site ur editing,

What I suggest u do for now is to change the last digit of ur submenu\MenuItem.... That is (eg.) in ur case...
Forum: JavaScript / DHTML / AJAX Mar 25th, 2008
Replies: 1
Views: 1,408
Posted By Traicey
There are many ways to do that but I'd rather use this method


<script language ="javascript>
<!--
function whatever()
{
var TextBoxName = document.FormName.TextBoxName.disabled =...
Forum: JavaScript / DHTML / AJAX Mar 25th, 2008
Replies: 3
Views: 2,493
Posted By Traicey
Thanx a lot guyz really appreciate it
My project is just perfect

Thanx once again
Forum: JavaScript / DHTML / AJAX Mar 20th, 2008
Replies: 3
Views: 2,493
Posted By Traicey
I have a program that suppose to print out a student information so I have to use Alert in order to make this a success but my JAVA SCRIPT is not producing anything, I dont know what Im missing in my...
Showing results 1 to 34 of 34

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC