15,120 Topics

Member Avatar for
Member Avatar for asyieen

did anyone know how to make a calendar by using javascript? actually i want to put calendar next to text field, so that, the user can easily select the date and the date will come out in the text field......help me plzzz.....

Member Avatar for asyieen
0
166
Member Avatar for theimben

How would I make something like they have on BBC iPlayer with their scrolling images and text. Thanks, Unreal. :)

0
53
Member Avatar for kishor_agrawal

I am a newbie ...and i m working on a casetool....named Coolgen... Which Generate the jsp pages.... now i have added a html control on my page...... <input id="demo1" size = "10" onBlur="magicDate(this);validate1();" > Now there is a onther field.... which is ool gen field.........whose id is 'PUBLISH_DATE' i want …

Member Avatar for Troy III
0
106
Member Avatar for gargg321

Hi, I don't know much about javascripts. I am preparing a module in PHP in which I have to validate data entered by a user through javascripts. Now there is a field in which I have ensure that the value entered by the user already resides in the database. How …

Member Avatar for davonz
0
115
Member Avatar for asyieen

actually, i want to display back all checked value in checkbox..In my form, there is some checkbox element where the user should check necessary value b4 submit the form....My problem is, once the user has submit the from, i can't retrieved only checked value.....it display all value including unchecked value …

Member Avatar for Shanti C
0
426
Member Avatar for gargg321

Hi, I am developing a module in PHP where I have to ask user to enter dates in two fields. The catch is that the second date entered should come after the first one in a calendar year. eg- if first date field has value of June 2,2008 then the …

Member Avatar for Shanti C
0
178
Member Avatar for ghostrecog

[code] <html> <head> <title>swapimage</title> </head> <script> var arr=["C:\Documents and Settings\Mohan Krishna\Desktop\ku20.gif","C:\Documents and Settings\Mohan Krishna\Desktop\b30.gif","C:\Documents and Settings\Mohan Krishna\Desktop\goku12.gif"]; i=0; function swap() { document.images[0].src=arr[i]; i++; if(i==3) i=0; setTimeOut("swap()",5000); } </script> <body bgcolor="white"> <marquee behaviour="alternate" direction="left"><img src="C:\Documents and Settings\Mohan Krishna\Desktop\UNUSED DESKTOP ITEMS\batman5.gif" onClick=swap()> </marquee> </body> </html> [/code]

Member Avatar for Troy III
0
162
Member Avatar for ajithraj

i am using a JS code to obtain the cursor position on a text area..it works botyh in Mozilla and IE..But the problem is when am using this in IE, am getting an alert box which has the contents like [object] ...the code is like this [code] function getPositionForConstraint(node) { …

Member Avatar for Troy III
0
129
Member Avatar for themailsian

Dear All, I have a problem with delete confirmation code in java script. i m using this code: [code] <script LANGUAGE="JavaScript"> function confirmSubmit() { var agree=confirm("Are you sure you wish to continue?"); if (agree) return true ; else return false ; } </script> [/code] in Asp page on click of …

Member Avatar for Shanti C
0
103
Member Avatar for hockey4e4g

Can anyone help me? I tried using spry in dreamweaver CS3 for the first time and, upon completion of my site, found that it isn't working in some versions of IE. It opens perfectly in Firefox, Safari, and Opera. Different versions of Internet Explorer seem to carry out the code …

Member Avatar for Troy III
0
89
Member Avatar for jmasta

Hello everyone, I'm using Thomas Brattli's window script from DHTMLCentral.com. It works great in IE, but in firefox, I get some errors. First is "oWin[i].oWindow.moveIt is not a function". I don't see why it doesn't work fine in Firefox if it works fine in IE. The function definition is there, …

Member Avatar for jmasta
0
133
Member Avatar for RahulV

Hai, I've to develop a [COLOR="Red"]dynamic web[/COLOR] project in my college. I'm interested on doing something different but I've no idea on what topic to select. Can you suggest me a good topic for the same. Hoping for lots of good ideas. Thank you all in advance !!!

Member Avatar for Shanti C
0
144
Member Avatar for gargg321

Hey Guys, I am new to PHP and know nothing of java scripts. I have to build a web page where user enters login information at the time of registration. I have taken help of a PHP tool to generate the required scripts. Now in that I have to incorporate …

Member Avatar for gargg321
0
167
Member Avatar for willfindavid

Problem with javascript code in Mozilla firefox. [CODE]//Initial Code block PhaseID = cboPPPhase.options[cboPPPhase.selectedIndex].value; WorkflowRequest(PhaseID); //The function function WorkflowRequest(PhaseID) { //This is Ajax code block Http.get({url: "../ajax/Process.aspx?PhaseID=" + PhaseID , asynchronous:false, callback: WorkflowRequest_callback}); } //The callback function function WorkflowRequest_callback(Result) { if (Result.readyState==4) { if (Result.status==200)// if "OK" { WorkflowProcessResult(Result); } } …

Member Avatar for Thirusha
0
105
Member Avatar for greeny_1984

hi, I have a application form in which i want to use exactly the same functionality used as in following link [url]http://my.naukri.com/manager/createacc2.php?othersrcp=5424&wExp=N[/url] I am an asp.net developer.I have no previous exp in javascript.Can any one suggest any method to implement this functionality using asp.net and javascript.

Member Avatar for greeny_1984
0
190
Member Avatar for xaippo_script

I have been studying Javascript for quite a while now and I've recently started some projects of my own to try it out. Although my script looks perfectly valid to me, the error console in my browser keeps reporting that my object data type-variables are undefined or null, but I …

Member Avatar for R0bb0b
0
128
Member Avatar for Diode

Hi. I'm using AJAX to make a menu for a guy's website I'm making for him. Anyway, he has a sports memorabilia store. I have a simple menu. There is a drop down box that you click on to select the sports league you want. Then below it is another …

Member Avatar for R0bb0b
0
161
Member Avatar for hameed007_pk

i am trying to create a webpage. In creating webpage i have troubling by java script. I have to make a drop down button. The elements of drop down button are pakistan afganistan india. Question is, when i click on pakistan then cities of Pakistan must be show, same if …

Member Avatar for buddylee17
0
80
Member Avatar for ghostrecog

In javascript we can swap only jpg images? Then what about the gif images. Please help me. By answering my first post so the second post will be solved automatically.

Member Avatar for ghostrecog
0
104
Member Avatar for clhari

Hi, I want to know if it is possible for Internet Explorer to detect any action on the "Print Screen" key. The website needs its content to be secured as much as possible. The clipboard is being cleared for every fraction of a second, until this web-application is closed. There …

Member Avatar for Troy III
0
1K
Member Avatar for willfindavid

I have a function like this .. [CODE] function1() { if ( valuecboOrganization =="2" ) { alert(valuecboOrganization); fnGetDepartmentRequest(valuecboOrganization); return; } } function fnGetDepartmentRequest(organizationid) { debugger; Http.get({url: "../ajax/Process.aspx?organizationid=" + organizationid , asynchronous:false, callback: fnGetDepartmentRequest_callback}); } [COLOR="Red"]function fnGetDepartmentRequest_callback(Result)[/COLOR] { debugger; if (Result.readyState==4) { if (Result.status==200)// if "OK" { fnGetDepartmentRequestProcess(Result); } } } …

Member Avatar for willfindavid
0
121
Member Avatar for edek

Hi, I need to get event handler's argument in Firefox3 - but it does not have any global 'event' variable like IE nor it passes an argument to the handler. How do I get this argument then??? [CODE=JAVASCRIPT] function doSomething(e) { if(!e) var e = event; //for IE alert(e); //It …

Member Avatar for Troy III
0
101
Member Avatar for theobakker

I use FP2000 as a html-editor. My navigation bars show hover buttons, but no way the cursor changes to a hand over these buttons. I tried several changes to the code but lack of knowledge keep me from results. A typical button in code looks like: [code=html] <applet code="fphover.class" codebase="./" …

Member Avatar for Troy III
0
148
Member Avatar for fifufifu

This is the scrip, is working perfectly on IE but not on Firefox, can anybody help please, THX [code=JavaScript]<script type="text/javascript"> <!-- var sw_interval; var sw_x = 10; var sw_dx = 0; var sw_t = 10; var sw_cursor = 1; var sw_v; var sw_w; var sw_numItems; var sw_first; var sw_last; var …

Member Avatar for Troy III
0
177
Member Avatar for MDGM

Hey, Simple javascript problem: user enters desired domain name into "domain" field and submits, php scripts check if domain is available. If it is, a paypal add to basket button is written onto the page, however i cannot use php to get the content of the "domain" field and put …

Member Avatar for R0bb0b
0
97
Member Avatar for assgar

Hi I am new to javascript. I have two drop downs used to reload the page displaying selected information. How do I get the OnChange function to pass year and user form the drop down. I also need to pass data in the array $month. [code] <html> <head> <body> <script …

Member Avatar for assgar
0
298
Member Avatar for frylock

I'm using Adobe Acrobat version 5.0, and even the simplest string functions aren't working. Let's say I have a field called "name" and I want to get the second letter in that field. The following code should work unless someone slipped a narcotic into my morning coffee: var f = …

0
41
Member Avatar for jmwolv

Hello everyone i am new member,:icon_confused: If anyone can help me with my problem i would be very gratefull as i feel that i am stuck. I have started to build my first website using html and my first page is done and works fine. At this point i decided …

Member Avatar for buddylee17
0
48
Member Avatar for steveg1965

Hi Guys, As my ISP does support .asp but not CODOSYS, I was hoping someone might be able to help me convert this into simple .asp email script or something? [code]<% 'sets form variables dim sendtoemail, sendtoname, sentfromname, sentfromemail, messagesubject, messagebody, url, Email_SMTPAddress, Email_ServerComponent sendtoemail = request.form("sendtoemail") sendtoname = request.form("sendtoname") …

Member Avatar for steveg1965
0
146
Member Avatar for adaykin

Hello, I have done this successfully in firefox, but I need to do this in IE now, I want to dynamically generate an id for my input elements for an element being created. So far I can't get the id to come out correctly, here is what I have: [CODE] …

Member Avatar for adaykin
0
153

The End.