14,054 Topics

Member Avatar for
Member Avatar for GR Web FX

Hey people I currently have some rollover buttons.....very simple....text turns from grey to red when the mouse moves over the button. I did this through dreamweavers rollover option. But i what i want to achieve in addition to this is, when the mouse rolls over the button and turns the …

Member Avatar for greghuston
0
203
Member Avatar for stupidfly

I want to be able to open a new window with simple html, like this: [INLINECODE]<a href="file.htm" target="_blank">click here</a>[/INLINECODE] I want to then put javascript in the header of that new file that takes off attributes such as toolbars or scrollbars. This has to be possible. Thanks.

Member Avatar for stupidfly
0
137
Member Avatar for Samir

I'm using the following function to modify tags used for mouseover text:[code]function delHoverX() { re = /(\bdsc00001\b)/i; imgTags = document.getElementsByTagName("img"); for (i=0; i<imgTags.length; i++) { if (re.test(imgTags[i].title)) { origTitle = imgTags[i].title; origAlt = imgTags[i].alt; imgTags[i].title.replace(re, "$1"); imgTags[i].alt.replace(re, "$1"); if (origTitle == imgTags[i].title && origAlt == imgTags[i].alt) { imgTags[i].title = "same"; …

Member Avatar for f1 fan
0
132
Member Avatar for jeepj27

Hi All - I am currently using a Javascript for a pop up window that enlarges a thumbnail picture. I wish the POP UP window image to be LINKABLE - that is on mouseover of IT, goto a new window URL - Any help would be extremely appreciated!!! My Current …

Member Avatar for f1 fan
0
147
Member Avatar for SynReaper

I have been searching for what seems to be forever now for an all-inclusive resource site that can provide information on embedded video controls using javascript. I have seen many sites that use javascript to control such video functions as play, stop, subtitling, and first-frame image. Can anyone possibly direct …

Member Avatar for plazmo
-1
427
Member Avatar for martinkorner

I want to put a form on my website which will work on any browser and preferably doesn't make the user have to see the e-mail and have to click send. If this isn't possible I would just like a form for my website which will work in internet explorer …

Member Avatar for martinkorner
0
217
Member Avatar for abhinaynagpal

<html> <head> <title>frame and button</title> <script language="Javascript"> function sho(form) { document.writeln("click click boom!"); alert("clicked!); form.tex1.value="abc"; } </script> </head> <body> <form name="cosine"> <input name="tex1" type="text" value=" "><br><br> <input name="button1" type="button" value="click" onClick="sho(this.form)"> <input name="reset1" type="reset" value="clear"> </form> </body> </html>

Member Avatar for plazmo
0
147
Member Avatar for plazmo

below is my external javascript code and testing page. for this im just using settimeout to loop increment and write out a value. on the first loop everything works corrrectly. on the second loop everything gets erased and only displays the text i wrote. i can run other scripts fine …

Member Avatar for tgreer
0
138
Member Avatar for aish

In my asp.net c# web app. I have 10 text feilds. I want to avoid duplicate same value in this text feilds. how I can do this using javascripts. :cry:

Member Avatar for aish
0
131
Member Avatar for Phaelax

I have the following code which changes the background image of table cells when mouse over. It only seems to work in IE. I don't think it worked in Safari either. [CODE] function menuRollOver(tID) { tID.background="images/menu_highlight.gif"; } function menuRollOut(tID) { tID.background="images/menu_normal.gif"; } [/CODE] Some html for my table cell: [code] …

Member Avatar for f1 fan
0
73
Member Avatar for H2ofield

Hello, I'm attempting to create a page on my company website that lists products in my inventory. I've created a[URL=http://www.thepiezoexchange.com/mercury_inventory.htm]simple page[/URL], but need to create the scripting to make it do the following: 1. When the customer enters a quantity in the form field next to the part number(s), the …

Member Avatar for tgreer
0
368
Member Avatar for redsabre

I wan't to be able to have a list of birthdates advance by one digit when that particular persons b-day rolls around. Is there a simple script out there that I can apply here? Thanks in advance, rs

Member Avatar for redsabre
0
209
Member Avatar for aish

I'm working on asp.net c# web app. in my form I have Text Area and button. when I click the button I want to remove selected text from the text area (not all text only selected text.) how can I do this? can I use javascript for that if so …

Member Avatar for tgreer
0
97
Member Avatar for ksknagaprasad
Member Avatar for A Monkeys Uncle

First I noticed images within the div tags aren't appearing in my Firefox browser. Also, I have a videogame website, and I'm having trouble with it. There is too much space at the bottom of the home page, and I can't seem to rid of it in Dreamweaver. I'd appreciate …

Member Avatar for tgreer
0
250
Member Avatar for Glynis

I haven't learned how to do my own javascript but I have some snips from the HTML editor I use (1Page). I'll like to insert some of them into my pages (which I know how to do) but as an external linked file. Is there an easy way to do …

Member Avatar for tgreer
0
155
Member Avatar for vangraan

I was browsing around and came by this site and saw a very cool effect. [url]www.mininova.org[/url] Type a letter in the search box and they display the most recent results by other users. What is the best way going about getting this effect. I havent looked into AJAX yet. Is …

Member Avatar for vangraan
0
86
Member Avatar for iketunde

how can i create a menu bar using javascript similar to what u see on applications like ms word.. would prefer codes... also how can i make animated images using javascript. all i want the script to do is simply alternate images say every 10 secs. it displays a different …

Member Avatar for tgreer
0
129
Member Avatar for stupidenator

Hi everyone, I am working on a program that will allow a user to enter some customer information including name/acct number, call back number, and reason for call back, and time of call back. What I want this to do is then display the customer info (up to five customers …

Member Avatar for stupidenator
0
92
Member Avatar for JC_McGeekster

I would like to know if anyone knows of a reference website or help file for JavaScript. Not really a tutorial website, but more of something where I can search for a function and the engine will return my results for that function. A reference sort of like the PHP …

Member Avatar for Gary King
0
160
Member Avatar for server_crash

I have a javscript function which opens a url....The only thing is I need it to open pages with parameters, and I'm not sure how to do it: [code] <html> <head> <title>LinkOpener</title> <script language="JavaScript"> <!-- function SearchTest(url, args) { // if args is null, do the following window.open(url,'win1','width=600,height=700, status, toolbar, …

Member Avatar for server_crash
0
183
Member Avatar for bobr_1013

Hi, I'm having trouble running javascript. I have a Dell Dimension 300 system. The code I have in my "htm" document is: <td id="daycell"> <script language="javascript"> <! -- Hides from non-JavaScript browsers document.write("Today is 12/15/2005<br>"); document.write("only 10 days until Christmas"); // stop hiding --> </script> </td> I tried it with …

Member Avatar for tgreer
0
307
Member Avatar for fineline

Hi I'm quite new to javascript. I am currently working on an online job application system where I require users to enter their name, address, resume, etc. in spaces provided, and then, upon clicking the "Submit" button, I require all this info to be emailed to the user automatically, as …

0
82
Member Avatar for Sothink

Sothink designs lots of new menu templates or samples. [URL=http://www.sothink.com/campaigns/dhtmlmenusample.php3]http://www.sothink.com/webtools/dhtmlmenu/samples/index.htm[/URL]

Member Avatar for Sothink
0
78
Member Avatar for goldeagle2005

Im working on a college project. In this, the user is required to authenticate. The login page (login.asp) has the form and the corresponding ASP code. Once the user is successfully authenticated, the user is redirected to the main page(mediaguidehome.asp). Currently, on authentication, I'm using the following code to redirect …

Member Avatar for zippee
0
159
Member Avatar for JAM

I came across T. Greer's very clever demonstration of how to provide an HTML combobox at [url]http://www.tgreer.com/comboArticle.html[/url]. I realised, however, that for the purposes of the demonstration the example combobox is placed at an absolute position on the page. I tried to make it dynamic, but have encountered difficulties. Would …

Member Avatar for tgreer
0
407
Member Avatar for jakeday

Hi all, I'm very, very new to Java / Javascript, but have a couple of years experience with other programming languages. - (inexperience may explain a novicey question However, I wanted to learn a web-enabled language to capture data from certain websites to build systems for my "sports-betting" hobby. I've …

Member Avatar for jakeday
0
308
Member Avatar for andrewthk

I was wondering if anyone could tell me what Animate.js class does? It seems like a standard front page package class. There's no commenting on it so it's really hard to follow. Also when using this class, my web page does not displays things correctly when calling this class by: …

Member Avatar for andrewthk
0
174
Member Avatar for bestgraphicsbd

I am fairly new to all of this but I think it's great! I've taken courses in HTML, JavaScript and currrently CGI Programming. My question: Is there an easy way to make a counter in JavaScript? Seems like there should be but can't quite figure it out. Thank you, :-|

Member Avatar for bestgraphicsbd
0
146
Member Avatar for fieryidris

i signed up to daniweb a few weeks ago when i was having problems with visual basic which after a lot of searching on google i managed to solve for myself. i am now having a go at building a website and have been using dreamweaver which makes things very …

Member Avatar for fieryidris
0
203

The End.