17,114 Topics

Member Avatar for
Member Avatar for ArtChess

Hello Ladies and Gents, I hope everyone is doing well as they receive this message. If anyone knows some basic html language and can assist, it would be much appreciated. I will take them out to dinner at their choice of restaurant. Basically there is a file that we house …

Member Avatar for DaveSW
0
109
Member Avatar for JanetBruten

Hi, I'm having problems with IE6 compatibility for a website I am building. I have a simple script that opens a new window. It works fine in Firefox, and with Netscape if the appropriate tab settings are made. But not with IE6. I assume it is something to do with …

0
94
Member Avatar for Naters_uk

Sessions DO NOT end when a user closes their browser. There is no communication with the server when a browser is closed so there is no way the server can know to end the session. The same is true when you leave the site for another. Again no communication takes …

Member Avatar for f1 fan
0
194
Member Avatar for Naters_uk

Sessions DO NOT end when a user closes their browser. There is no communication with the server when a browser is closed so there is no way the server can know to end the session. The same is true when you leave the site for another. Again no communication takes …

Member Avatar for tgreer
0
119
Member Avatar for spidey

[COLOR=DarkOliveGreen]hello, i have two dropdown listboxes: one is for the countries, the other one's for the areas. in the 'countries' listbox, the user can select multiple values. what he selects, the second listbox is going to display the country's/-tries' corresponding areas. all entries should be fetched from the database. ex. …

Member Avatar for iwahdan
0
96
Member Avatar for MrScruff

Hello! I'm trying to place a google search bar on the right hand side of my header. So my logo is on the left and search is on the right. So I've got a table with two columns, logo in one and search in the other. But for some reason …

Member Avatar for MrScruff
0
163
Member Avatar for sevan

Hi...new here. Found this site while searching for an answer. While a novice mainly, I am as good as it gets for my workplace, a not-for-profit in central Indiana. Anyway, a few eeks ago I stumbled across a code snippet that could be inserted in email that, when opened, the …

Member Avatar for s1phrx
0
239
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
210
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
142
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
139
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
156
Member Avatar for ramamoorthy

I've created checkbox and added events to it through js file which is included in the jsp. It works fine in IE but not in Mozilla Firefox 1.5. This is the code fragments. displayCheckbox.name = "Add_" +productid; displayCheckbox.id ="Add_"+productid; displayCheckbox.onclick = EventProducer.registerEventHandler(this, 'toggleSelected', [displayCheckbox, displayLI]); displaySpan.onclick = EventProducer.registerEventHandler(this, 'clickCheckbox', [displayCheckbox]); …

Member Avatar for Drew
0
99
Member Avatar for ohgosh

hi there, i am doing asp.net and had many sets of checkbox which is html checkbox and not asp checkbox. eg: [CODE]<input type="checkbox" id="chkbox11" value="1" onclick="javascript: checkcheck(this);" runat="server"> <input type="checkbox" id="chkbox12" value="2" onclick="javascript: checkcheck(this);" runat="server"> <input type="checkbox" id="chkbox13" value="3" onclick="javascript: checkcheck(this);" runat="server"> <input type="checkbox" id="chkbox14" value="4" onclick="javascript: checkcheck(this);" runat="server"> <input …

Member Avatar for f1 fan
0
223
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
469
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
220
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
166
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
142
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
135
Member Avatar for sfbell

Hi all, My name is Steve and I'm a coder. I was introduced to DaniWeb through my google desktop search. I have been coding for a while now. Self taught (which explains the poor formatting of my code sometimes.) I am fluent with Perl, Python, Php, Java, C#, ColdFusion, javascript. …

Member Avatar for mastermind_SEO
0
72
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
78
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
387
Member Avatar for Horsigrl

We are running Windows 98, Walmart Internet with a dial up modem. For a few months now our Internet Explorer does not work. When we open it, this is what we get in return... The page cannot be displayed The page you are looking for is currently unavailable. The Web …

Member Avatar for swatkat
0
141
Member Avatar for andreabez

OK, I know Oracle, SQL, VBScript, Javascript, html, ASP, MS Access and it's VBA very well, I have a website that can handle mysql. NOW, I just bought myself this .NET thing. Anyone have any idea where I start from here? I don't even know what to ask yet, but …

Member Avatar for f1 fan
0
94
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
215
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
100
Member Avatar for ksknagaprasad
Member Avatar for Pimp Daddy

I only started posting on this forum again a few days ago after going a long time without posting anything. I've been a member since around the middle of 2004. I thought I'd better re-introduce myself as the first time I posted about myself was a long time ago in …

0
62
Member Avatar for toBeOnoT toBe

Hi all, Hope u guys can help.Im having trouble of converting a html file containing javascript to aspx file. The display is ok in html extension but after ive converted it to aspx, the file is unreadable. There is only an error message saying that the `The active shcema does …

0
32
Member Avatar for xxplosive

I have been trying to insert google adsense ads to my website but everytime i try to add the code it says that thel HTML tags im using are not allowed. I know this code is javascript but i just cant seem to use it on my site! i emailed …

0
88
Member Avatar for red_evolve

Hi all, I'm relatively new to ASP.NET - used to code in Coldfusion. I've got this control created in a page <asp:listbox>. I also have a javascript function in the same page to add listitems into the listbox on certain client calls such as the following:- [CODE] var anOption = …

Member Avatar for red_evolve
0
357
Member Avatar for AxonIDI

Not very sure where to post this because of the mixture of type of information. 1) Anyway, i have some queries on how to have event handlers in VB .NET for buttons i have created in ItemDataBound? The user is able to delete rows by using checkboxes and delete buttons, …

Member Avatar for tgreer
0
104
Member Avatar for Paki^Boy

Hello friends i hope u all will be fine...am also enjoying the blessings of Life... Dears i am from Pakistan (Asia) and an IT Student.....i love to develope Web Site but hasnt any professional experience so i want to learn Php so that i may do something dynamically and i …

Member Avatar for Paki^Boy
0
124
Member Avatar for grajeshmsc

Hi all I'm using Business Objects Crystal Reports.I want to add my Custom print image and javascript.I can remove the default toolbar.But I cant able to add the custom javascript to the image i inserted in the crystal report.Please Help.

Member Avatar for grajeshmsc
0
86
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
265
Member Avatar for danny1024

Help please, I need to create a for loop for summing numbers in JavaScript - can anyone help? So far I have var biggestNumber ; var theSum = 0 ; Thanks

Member Avatar for jwenting
0
63
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
157
Member Avatar for venetian_jigsaw

I am developing my first e-commerce site and have run into a slight problem with the page counter. As you can tell in my code below, I set my number/Pg and start page level vars as follows: $numPerPage=3; $start=0; I know I am missing a limit in my SQL stmt, …

Member Avatar for techniner
0
144
Member Avatar for eugui

i don´t speak enlgish very well and i want to explain the vulnerability/problem whith orkut. Brazilian guy created a php script that you can send message for all your friends in orkut he did too a nice program where you write the community and the program get the emails from …

0
84
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
88
Member Avatar for opfamily55

I can't figure out what I am doing wrong. I am learning JavaScript and am lost. Can someone please offer guidance. :confused: <html><!--Kimberly R. Owens--> <head> <title>Jennifer's Floral Garden</title> <SCRIPT LANGUAGE="JAVASCRIPT"> <!--Hide from old browsers function roller() { var banner = new Array("images/florist.jpg", "images/florist2.jpg", "images/florist3.jpg"); var banctr = '0' if …

Member Avatar for opfamily55
0
125
Member Avatar for NuGG

I have obtained the following script which only lets a page load if the visitor has been to the previous page, if they haven’t it sends the visitor to the appropriate page. However, it only works in Mozilla. Can anyone help me adapt this script to work in Internet Explorer? …

0
115
Member Avatar for bamf

Hi, Its my first post. I couldn't find the answer to my Javascript link problem after looking in these forums. I do know how its happened. I was on a site which had the right click button disabled and I knew there would be away around it, so I searched …

Member Avatar for bamf
0
92
Member Avatar for iamrashid

Hello All I am a student and think that in Javascript and HTML I will be sending some of the most dificult codes for web development my code "blinkeverything" is already there tody i m posting a very special code snippet "Float Every thing" this code is usually used for …

Member Avatar for nanosani
0
117
Member Avatar for ! !

[color=navy]AFLAX [/color][url="http://en.wikipedia.org/wiki/AFLAX"][color=navy](Wikipedia Entry)[/color][/url][color=navy] is a method through which developers may use JavaScript and Flash together to create AJAX-type applications, but with a much richer set of vector drawing controls than are available in either Internet Explorer or FireFox. Developers using this library have access to the full range of Flash …

0
65
Member Avatar for ! !

[url="https://www.google.com/analytics/"]https://www.google.com/analytics/[/url] [url="http://www.google.com/analytics/feature_benefits.html"]http://www.google.com/analytics/feature_benefits.html[/url] [CODE] <script src="[url="http://www.google-analytics.com/urchin.js"]http://www.google-analytics.com/urchin.js[/url]" type="text/javascript"> </script> <script type="text/javascript"> _uacct = "....."; urchinTracker(); </script> [/CODE]

Member Avatar for extreme90
0
226
Member Avatar for venetian_jigsaw

I am unable to get my pop-up to resize or hide the toolbar when I select a thumbnail. I entered the width & height in my onclick event, bu that did not seem to work. I am guessing that I probably need to enter the attributes in the function and …

Member Avatar for Lafinboy
0
582
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
131
Member Avatar for bradford68

Hey, thought I would introduce myself. I am trying to understand VB Net the best that I can, it really has sparked my interest here at work. We have a program designed with it, and I thought to myself, this could really be a great opportunity to learn a programming …

Member Avatar for Dani
0
180
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
100
Member Avatar for spidey

I have a table displaying the list of vendors from the database. I have to select one row (vendor details). For VendorID: ------------------------Start--------------------- <table> <tr> <td>Name</td> <td>Telephone</td> <td>Email</td> </tr> <%do while not rs.eof%> <tr> <td onClick="HighLightTR('#cccccc','cc3333');"><input type="hidden" name="vendorid" value="<%=rs("VendorID")%>"><%=rs("Name")%></td> <td><%=rs("Tel")%></td> <td><%=rs("Email")%></td> </tr> <%rs.movenext loop%> </table> --------------------------End------------------------- The page also has …

Member Avatar for msaqib
0
211

The End.