15,699 Topics

Member Avatar for
Member Avatar for edmicman

I have a classic ASP form with a date input. I would like to have a javascript datemask for the textbox, but I need it to ideally respect localization settings. I've found a number of masks that look like they would work for the US, and I may try hacking …

0
57
Member Avatar for emmanueloladele

Hello all, I want to transform an xml file on the fly using javascript. I want my xslt xpath information to be dymanically generated on firing an event. e.g. I want value to be passed to my xslt document when a user picks a drop down mennu or select a …

Member Avatar for mostafadotnet
0
96
Member Avatar for brr

iam new to ajax i did some examples in jsp using Ajax really its very nice now i want to put Pop-up ballon i think using this without put view button in my screen, to view the particular item details within page plzz provide me its urgen for me

Member Avatar for aravelli
0
145
Member Avatar for lordx78

[code=html] <select name="test1" style="width: 200px"> <option></option> </select> [/code] This is typical drop-down box in html forms. My question is, hot to make the option to capture current date. Or Must I use any other function than drop-down box. Please advise.

Member Avatar for lordx78
0
163
Member Avatar for computerman11

I have a blueprint of a building that I have scanned into my computer. I am looking to have a menu of some sort where I can select what room I want to color, and another menu to change the color. Any ideas?

Member Avatar for computerman11
0
94
Member Avatar for adrumsolo4u

i have three "buttons". when each is pressed i want to 1.) detect if it is not hidden, if so, return (do nothing). 2.) detect if another button is not hidden, if so i want it to hide that button and continue to the third. 3.) i want it to …

Member Avatar for adrumsolo4u
0
89
Member Avatar for HenryForbes

Help, I have a web based form containg values typed in by the user. The first value is called noItems, which is outside the form. The form contains a persons name, the number of items,noSub, thay have submitted and their final grade. I need to use noItems and noSub to …

Member Avatar for digital-ether
0
78
Member Avatar for adrumsolo4u

what i am trying to accomplish is to have two elements lets say SEND and RECEIVE. when i click the element SEND i want the RECEIVE element to receive the effect. currently my script only effects the element itself: [CODE=javascript]var animElements = document.getElementById("send").getElementsByTagName("p"); for(var i=0; i<animElements.length; i++) { animElements[i].onclick = …

Member Avatar for digital-ether
0
89
Member Avatar for kishou

ok so i have a page where the user clicks something the page sets a cookie.and its in the onlick event. But for some eird reason it won't work doesnt any1 know why? also i created a function for setting cookies but it still doesnt seem to work.

Member Avatar for katarey
0
60
Member Avatar for adrumsolo4u

i have been trying to find a way to do it, but i can't seem to think of one. i need to do this: [CODE=javascript]var animElements = document.getElementById("resizercontainer").getElementsByTagName("p") for(var i=0; i<animElements.length; i++) { animElements[i].onmouseover = widthChange; animElements[i].onmouseout = widthRestore; } function widthChange() { if (!this.currentWidth) this.currentWidth = 150; doWidthChangeMem(this,this.currentWidth,170,10,10,0.333); } …

Member Avatar for adrumsolo4u
0
143
Member Avatar for austind

I've been working on re-designing my website, and I decided to add a javascript based slideshow to go on the front page to link to articles. I know next to nothing about scripting (XHTML/CSS is my thing). The question I have has to do with the slideshow loading incorrectly because …

Member Avatar for digital-ether
0
89
Member Avatar for CathInfo

[CODE]var s = document.getElementById('field[12]'); var cust_cc_exp_month = s.options[s.selectedIndex].value; // This displays the correct Value -- which is "0" for item #0 = "Please select..." alert("Month: " + cust_cc_exp_month.toString()); if (cust_cc_exp_month == "0") { // This code never executes! } Here is the HTML portion: <select id="field[12]" name="field[12]"> <option value="0">MONTH</option> <option …

Member Avatar for digital-ether
0
91
Member Avatar for kishou

ok i have a iframe and i want it so that when someone clicks a link inside it it opens in the same window. not a new window. i was thinkingof using onclick but it would be too much work.

Member Avatar for digital-ether
0
62
Member Avatar for geoffi

Hi I am looking for a scrolling solution for a site - I want to have images scrolling on the screen from when the page downloads and then offer the ability to show an enlarged pic by mousing over a thumb nail. I am being told this is not possible …

Member Avatar for maruszka
-1
117
Member Avatar for vashishth_kec

hi, i m having a problem on on uploading this site it is giving unexpected object error plz help me </head> <body onload="afterload()"> <img src="images/ICB Blue_top arc.gif" id="toparc"/> <div class="content"> <img id="logoimg" src="images/ICB Blue_logo.gif"/> <div id="registerDiv"> <FORM name="drop_list" action="mobisyregister_.php" method="POST" onSubmit="return ValidateSelect(this)"> <table cellspacing="0" cellpadding="5" border="0" width="100%"> <tr> <td valign …

Member Avatar for MidiMagic
0
99
Member Avatar for vedmack

Hi i have a form which holds several Inputs of type text, now when im clicking on a check box it run a js script which gets each Input text element and colors its background with a color something like this [code=javascript] var filed=document.getElementById("one"); filed.style.backgroundColor='red'; filed=document.getElementById("two"); filed.style.backgroundColor='red'; ... .. . …

Member Avatar for MidiMagic
0
2K
Member Avatar for web_lock

I'm facing a problem with Firefox. I've got a page with a input text box element within a form . On the Click of Submit , I would like to open a new window with width =1200 and height=900 . I've used the following code [code] <form name='form' action="login_check.php" method="POST" …

Member Avatar for MidiMagic
0
117
Member Avatar for CathInfo

Please, anyone, tell me how can this be: [CODE] var cust_state = document.forms.info.dropdown_a.value; // Displays "TX" or whatever state was selected. I tried removing this line; it doesn't help. alert("State: " + cust_state); if (cust_state == "XX") { eval('document.forms.info.dropdown_a.style.backgroundColor = "#FFCCCC";'); eval('document.forms.info.dropdown_a.focus();'); alert("Please select a State from the drop-down box."); …

Member Avatar for MidiMagic
0
79
Member Avatar for patrickmcdonogh

Hi everyone, I was wondering if someone could help me do something i would like to do. I want to create draggable boxes with content in them like standard html, etc. These boxes can be dragged around closed and there content hidden. The type of boxes i am trying to …

Member Avatar for tulsafork
0
80
Member Avatar for nova706

I am looking for a way to pass a variable from one form to another form in a new page. Bassically when a person clicks 'register' for a specific class, I would like it to open up my registration form and automatically fill in the class name and perhaps other …

Member Avatar for peter_budo
0
107
Member Avatar for savola28

Hi! I wonder if there is very simple way to convert SVG format images to gif format. For example: <img src="ImageConverter.js"> ImageConverter.js gets the SVG-image from somewhere and returns image in gif format.

Member Avatar for peter_budo
0
47
Member Avatar for tgreer

I've posted a new article on my site, dealing with how to integrate JavaScript and ASP.NET. It's a "beginner level" article. [url]http://www.tgreer.com/aspnet_html_03.html[/url]

Member Avatar for SheSaidImaPregy
0
215
Member Avatar for MikP

Hi all, I'm a n00b at Python and am working on outputting html using pyhtmloo - I've checked the [URL="http://sourceforge.net/docman/index.php?group_id=89844"]pyhtmloo site[/URL] for guidance but no joy there. Hopefully I'll find guidance here... The python code below outputs an html page and what I'd like to do is set the refresh …

0
56
Member Avatar for nova706

I am having trouble with a piece of javascript code that expands blocks of text. For example, when you click the title, the text under it will expand. I am fairly new to javascript but it looks like the code bassically re-writes the link in the html so that when …

Member Avatar for peter_budo
0
166
Member Avatar for Tom Tolleson

Hi everyone. I have sort of a simple question: I have need to replace one object (an image) with another object (a textfield/form object). I want the switch to occur when the user clicks on the image, and have the textfield appear in the same location. Is this possible? Thanks! …

Member Avatar for phillman17
0
109
Member Avatar for Papikos

Hello! I got a Web Site ([url]www.papikos.com[/url]) which shows well in MOZILLA (check it out). In IE is shows bad, on the left, right side too much space and the header is also not good (please check it too). Can somebody help with the according SCRIPT to make it look …

Member Avatar for MidiMagic
0
85
Member Avatar for brr

plz help me how to do select/dropdown iam new to ajax i followed the example select/dropdown from sourceforge net but its not possible how to do it using [B]jsp[/B] plzzzzzzzzzzzz help me in this, send me the code how to do it in jsp

Member Avatar for MattEvans
0
269
Member Avatar for muddpigeon

hi im new to this javascript business and have a problem with the following code [ICODE]<HTML> <HEAD> <TITLE> SOFASPEND - IN THE BEST POSSIBLE TASTE </TITLE> <SCRIPT LANGUAGE = "JavaScript"> /* Program to prompt for a number and then display message according to the response but allowed 2 maximum tries …

Member Avatar for ShawnCplus
0
187
Member Avatar for srinukatkam
Member Avatar for srinukatkam

Hi i want to need javascript using datagrid, for example i have a datagrid and in datagrid above two check boxes 1)checked and 2) unchecked .In datagrid also 5 checkboxes is there ,if i clicked checked all checkboxes will select and if i'll clicked unchecked all unselect checkboxes will select …

Member Avatar for aravelli
0
214
Member Avatar for rybo

Hey guys, so i'm not great with JavaScript since i mostly do HTML and C++... ok, so i have a site with a "contact" box that sends me the users message. i want the text to clear when the user clicks on it, but for some reason, i can't get …

Member Avatar for aravelli
0
81
Member Avatar for korman66

I need to use a Web conferencing system that does not require a download. I tried using one that uses Java but several of my clients had problems because their JVM was not compatible or they did not have a JVM installed. Is there a Web conferencing system with no …

Member Avatar for sistie23
0
107
Member Avatar for ashercharles

hai guys i have generated a captcha image and i want the image to change every time the user reaches the page.......... the code seem to work well with IE but in firefox the image does not get changed .......i tried "onload" command but the image goes on for an …

Member Avatar for ashercharles
0
275
Member Avatar for ceyesuma

Yes it's should be simple.Can anyone tell me why this won't right a string in the flippin body? Thanks [code] <!-- Document : computer_object Created on : Feb 23, 2008, 11:47:50 PM Author : James Howerton --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>computer_object</title> <meta http-equiv="Content-Type" content="text/html; …

Member Avatar for DangerDev
0
77
Member Avatar for tylerrr

Hello, I am hoping one of you guru's can help me out. I am new to Javascript and a bit of a hack at HTML. The following works correctly in IE7 but doesn't work in Firefox. Any idea? Also, is there any way to get IE to quit waring people …

Member Avatar for DangerDev
0
292
Member Avatar for nameunknown

Hi everyone, I currently have this script on my page that allows users to add and remove rows in the page. I have a another script that calculates a value on the dynamically generated elements and static ones too. my problem is, I cant figure out a way to pass …

Member Avatar for DangerDev
0
126
Member Avatar for TobbeK

Is any way to fill an ASP variable at clientside with javascript. I like to use that value to send as a string with a textlink like described below. <SELECT ONCHANGE="location = this.options[this.selectedIndex].value;"> <option value="">Choose something</option> <option value="0">------------------</option> <option value="1">option 1</option> <option value="2">option 2</option> <option value="3">option 3</option> <option value="4">option 4</option> …

Member Avatar for katarey
0
762
Member Avatar for martinkorner

I have some music in the background of my website (Let it snow.mp3) - using the following code: <script language="JavaScript"><!-- if(navigator.appName=="Netscape"){ document.write('<embed src="let it snow.mp3" autostart="true" loop="true" controls="SmallConsole" width=50 height=15></embed>');} else if(navigator.appName=="Microsoft Internet Explorer"){ document.write('<embed src="let it snow.mp3" autostart="true" loop="true" width=70 height=25></embed>');} else{ document.write('<embed src="let it snow.mp3" autostart="true" loop="true"></embed>');} //--> …

Member Avatar for MattEvans
0
160
Member Avatar for bosanava

Hi I built a website in dreamweaver, (on a mac). The pictures are aligned great, in Firefox and Safari. When I open Explorer, the picture at the homepage is smaller and doesn't cover all the cell. it's in the middle and there is a lot of black around it. How …

Member Avatar for MidiMagic
0
96
Member Avatar for ceyesuma

Is there a JavaScript api to look at methods? I googled and I didn't find anything familiar. I am used to the java api.

Member Avatar for Renincuente
0
81
Member Avatar for rrocket

What can I do not get this to work in Firefox? [code]document.getElementById("type_" + x).checked[/code] When I used [code]alert(document.getElementById("type_" + x).checked);[/code] to check the value it comes up fine in IE, but I get a "has no properties" error in FireFox.

Member Avatar for Porthos
0
98
Member Avatar for sinjix_media

Hi all. I was wondering if anyone can point me in the right direction as to how to create a top navigation like the one on apple.com (the tabs)

Member Avatar for Vai
0
71
Member Avatar for Renincuente

Hello all: I'm working on a user control that wraps some of the functionality of the VE maps. It can be "maximized" and "restored" by clicking on an image (just as the middle button of any window does).Initially the map is positioned in any city and can have several pushpins …

Member Avatar for Renincuente
0
89
Member Avatar for john_aa

Hey guys, I am interested in knowing, what new Web Development projects you are doing, curious to know, what data base you use, and if you are using Linux or Windows platform. Also, will like to know, if there are any alternatives to Adobe products, that you may be using

Member Avatar for DangerDev
0
72
Member Avatar for nishanthaMe

Hi all; i want to insert a a div tag inside the javascript (in order to : xmlhttpreuest object status is not 4 then a messaga saying Loading..............) as well as I want to put that message center of the page but should not change if the scroll bar dragged.so …

Member Avatar for DangerDev
0
64
Member Avatar for Tom Tolleson

Hi! I'm working on a graphics interface that is almost completely JavaScript. I want to assign a key combination to a function. For example: if the user hits Control+T, a new window would pop open. Any tips? Thanks! Tom Tolleson

Member Avatar for DangerDev
0
343
Member Avatar for twkillswitch

on my website i have a series of tables that i use to layout all the elements. On the homepage i have a horizontal navbar that uses javascript. below that is a graphic in a row and then another row below that with my flash element. The rows are not …

Member Avatar for twkillswitch
0
77
Member Avatar for hooray

Hi, i have a form on my website, and I would like to have a text box next to another text box that displays how many letters the user can type into the box eg: [code=html] <td><input type="text" name="description" maxlength="30" /></td> <td><input type="text" class="counter" value="30" disabled="true" /></td> [/code] This is …

Member Avatar for hooray
0
115
Member Avatar for gembutt

Hi Every1 I have been making a site in dreamweaver which has drop down html navigation above a rollover flash animation (a carosell of images with text appearing over it when rolled over - all made in flash and imported in). I am really stuck though! I have managed to …

Member Avatar for DangerDev
0
88
Member Avatar for m.cliter

Hello, I have searched in google, but I didn't find the answer. I want to creat something like that using javaScript: [CODE] <input type="text" onfocus="this.select();lcs(this);" onclick="event.cancelBubble=true;this.select();lcs(this);" /> [/CODE] here is my try, which works fine in Firefox but the events are not working in IE. [CODE] var parent = document.getElementById(parentID); …

Member Avatar for DangerDev
0
212

The End.