15,116 Topics

Member Avatar for
Member Avatar for BillyMako

Hey, My code i pretty messed up at the moment but i was hoping someone could help me change it so that when the form is reloaded the 2nd time round that the value in the drop down menu that's selected stays after the reload. [CODE] <!doctype html public "-//w3c//dtd …

Member Avatar for langsor
0
208
Member Avatar for cyberjorge

I am building a website for a real estate. As a designer I started doing the design in Photoshop, I am about to convert it in HTML but before I begin doing that I would like to know some things as this is my major concern. [INDENT] How to make …

Member Avatar for cyberjorge
0
166
Member Avatar for brr

[CODE] <input type=text class=text_box2 name=lstMAName"+s+" onchange=showMAName(escape(this.value),"+s+") id=select2> [/CODE] in the above code iam sending the selected value to the ajax function showMAName(str,str1) in select.js but there iam not getting the full value of this.value ( means if any space in the string like "how r u", iam getting only "how") …

Member Avatar for brr
0
138
Member Avatar for veledrom

Hi, Code below returns true for (.). It should return false like it returns false for (,). Is there any other way to check (.) and (,). I simply want validate money. Thanks [code] if (isNaN(form1.paid.value)) { alert ("Syntax is not right."); return false; } return true; [/code]

Member Avatar for veledrom
0
134
Member Avatar for JRM

Hello all, I got involved with a Joomla CSS project, but I know very little about the properties of CSS. I have found out the hard way, that it works by it's own rules which may or may not necessarily be a subset of the HTML tag that I am …

Member Avatar for essential
0
189
Member Avatar for ousys

Hello , I am new to javascript, and now I found a Strange problem here in my code, I sat in front of computer for many hours trying to solve it , but I still don't know what caused the problem and how to solve it , could anyone here …

Member Avatar for ousys
0
161
Member Avatar for hyperoctave

Hello.. I musy apoligize in advance for this, since this thread will be pretty much dedicated to my website, but hopefully if anyone has any tips or solutions on how to debug HTML, Javascript and CSS, others will find useful information here. My problem is simple. My website does not …

Member Avatar for gertrude
0
169
Member Avatar for F4r4Zm0In

Hi all, I need directions on "Text Alignment" I have used this code to greet user: [code=JavaScript]<script type="text/javascript"> var d = new Date(); var time = d.getHours(); if (time > 17) { document.write("<b>Good Evening, Thanks For Visiting Us!</b>"); } else if (time <17 && time >12) { document.write("<b>Good Afternoon, Thanks …

Member Avatar for langsor
0
107
Member Avatar for sethbaur

I'm working on a small web app that uses drag and drop to add users to projects for management purposes. It's hard to describe the problem without showing the relevant code, so I'll start with that first: [code=html] <div id="primary"> <?php foreach($jobs as $job): ?> <div id="jobdiv-<?php echo $job->id; ?>"> …

Member Avatar for langsor
0
84
Member Avatar for liam_page1

hey all, first post, im a real n00b at this.. its just part of my first yr at uni and dont even need it for the 2nd yr and never done it before.. anyway, if u could please just get me through this il be FOREVER greatfull... basically iv done …

0
41
Member Avatar for PsychicTide

Alright ran into a bit of a problem on the item count in my index... let me give you the layout I'm working with. I've got my index page with the header logo and navigation bar. This is followed by an Iframe. When I click the navigation buttons it changes …

Member Avatar for PsychicTide
0
183
Member Avatar for hunkychop

i have searched the web for awhile on this... i wrote a script that will format certain words as the user types [INDENT](ex. when the user types MTrak the text is replaced with <b>MTrak</b>)[/INDENT] i need to know how to view the formatting in a text box, not the tags. …

Member Avatar for zasyatkin
0
334
Member Avatar for NamrataC

Hi All, I've a java script file in which I've written a validation function. I want to call and execute this function in my asp.net page so that the client-side validation is executed. Somebody please help me soon.

Member Avatar for greeny_1984
0
111
Member Avatar for kaushik259106

Hi everyone, I need some suggestion. Actually i created a text box and wrote a java script to limit its character hold to 500 char. I made my related db column size to 508bytes(Oracle). The functionality was working fine when i suddenly found a bug. Say for example if i …

Member Avatar for langsor
0
121
Member Avatar for PsychicTide

Hey, just kind of some background so you don't think I'm fishing. I've worked with ASP,PHP,JS, AJAX, HTML, XML, etc... as well as fundamental programming languages like C#, C++, VB.net, Python, etc. I don't know all these languages extensively, but psuedo code works for me. It seems I have the …

Member Avatar for langsor
0
165
Member Avatar for Scooby08

Would anybody happen to know if it's possible to hide the value of a radio button unless it is checked, and then when it is checked display that value, and then after moving on, that value stays active, and the user can fill out the rest of the form and …

Member Avatar for Scooby08
0
102
Member Avatar for computerages

hi, I have an HTML form setup. It has several input text fields to enter the data. I also want the user to add more text fields dynamically if he wishes to enter more data. If I do it directly though PHP using loops, I loose the data previously entered …

Member Avatar for langsor
0
442
Member Avatar for viklund_anders

Hi, I am trying to get the contents of a gzip file located on the server. This code only prints the binary content of the file. [code]var msgUrl = "../messages/"+compressedMessage+".gz"; objXml.open("GET",msgUrl,false); objXml.send(null); alert(objXml.responseText);[/code] Any ideas how to get this working? Thanks!

Member Avatar for langsor
0
86
Member Avatar for zappan

Hi everyone, I've an issue here. i want load the data from database and i want it appear at DOM select. what i had done,first i load data to hidden text and use a javascript load to DOM select. But the problem is i need to click on select textbox …

Member Avatar for langsor
0
105
Member Avatar for nidhikayadav

I am using username and password. The password field is of type password. But when I do debugging i can see the password as typed in text. Is there any way to hide it. Any wrapper for this.

Member Avatar for langsor
0
97
Member Avatar for shijunair

Hello everyone, I am facing a problem with the start date and the end date.I have to do a validation such that the end date entered with the date picker should be equal to or greater than the start date.I have written the following code but it is not helping …

Member Avatar for langsor
0
116
Member Avatar for BillyMako

I want to change this code so that you can enter "Fruits" in a textr field and the drop down is populated instead of selecting "Fruits" from a drop down. [code] <!doctype html public "-//w3c//dtd html 3.2//en"> <html> <head> <title>Multiple drop down list box from plus2net</title> <SCRIPT language=JavaScript> function reload(form) …

Member Avatar for langsor
0
161
Member Avatar for nloding

I'm very used to using innerHTML, but it isn't a W3C DOM standard, so I'm trying to work my way out of using it and get to what I feel are better practices with the standard DOM. But I can't figure out how to clear the contents of an element. …

Member Avatar for langsor
0
591
Member Avatar for zappan

hi it me again. right now i had a problem with this code. when i open with ie6, it worked but if i use ie7,safari and firefox, the result didn't show up.here i provide the code. the error is where i mark it with the red color. please someone help …

Member Avatar for zappan
0
109
Member Avatar for prashanth18

hey somebody help me with site rating source code which can calculate in percentage on each 'yes' or 'no' clicked

Member Avatar for nikesh.yadav
0
124
Member Avatar for zappan

how to load data to DOM select html after retrieve from database using javascript. any suggestion or sample?.

Member Avatar for zappan
0
68
Member Avatar for mamamiaw

Dear all, Firstly thanks for reading this post. I have couple questions n problems to solve, and i believe all the masters and gurus here are kind enough to help me. I am not a programmer, nor that i'm experience with jscript. But i have this task or challenge to …

Member Avatar for mamamiaw
0
89
Member Avatar for sujithkumar

i have one date field i want to validate that field that date should not be less that current date if it is there show alert box pls tell solution for this

Member Avatar for mohandotnet
0
68
Member Avatar for mamamiaw

Hi all, Sorry to bother u all, I think i previously post about the quiz script, and i read and research abit here and there, anyway i manage to write some but found some difficulties,especially about random generator.. I have this several 'set' of question and answer, and i like …

Member Avatar for ~s.o.s~
0
102
Member Avatar for samarudge

Hi, I have got a script to refresh a single image but I want the user to be able to change the refresh rate of the picture by clicking a link. I have tryed the following code: [CODE]<p><IMG src="http://rc-xbot.ath.cx/webcam.jpg" width="320" height="240" border="1" name="refresh"> <SCRIPT language="JavaScript" type="text/javascript"> <!-- function Change(t) { …

Member Avatar for ~s.o.s~
0
109

The End.