15,127 Topics

Member Avatar for
Member Avatar for saswati_mishra

Hi , I have an ajax code which works well in IE. I receive the responseText and thus the alert messages. However, i receive no responseText in Firefox. The code snippet is as follows. function pingip() { var ipaddress=document.baseform1.serviptxt.value; var xmlHttp; try { xmlHttp=new XMLHttpRequest(); } catch (exception) { try …

Member Avatar for khaisarpasha
0
160
Member Avatar for xander85

The Javascript first... (Purpose: When a user hovers over any link that is contained inside of a <li> tag, then change the background color of the <li>...) 1 - May have an issue with my elements, being that it is not possible to change the background on <li> elements... 2 …

Member Avatar for ~s.o.s~
0
621
Member Avatar for jmasta

Hello everyone, I ran into an issue that I could use a little help with. I need to search a large string, match certain parts of it, and replace a certain part of the certain part. The entire string is made up of spans, tables, and images, to build a …

Member Avatar for jmasta
0
130
Member Avatar for shaikh_mshariq

I want to pass a large string in ajax request that would be parsed and resultant data is returned by the server. How can I achieve this ? Is POST method can read a large string from any html element using AJAX ? And if yes than how it is …

Member Avatar for hielo
0
242
Member Avatar for anish.anick

Hi All, I am facing CPU utilization issue while iterating through HTML table rows. I am generating an HTML table dynamically using javascript which contains atleast 500 rows. After the creation of table, the table cells are assigned with some values from a JSON object. The sample code for assigning …

Member Avatar for ~s.o.s~
0
244
Member Avatar for khr2003

hello I found a js that allows to use dependent drop down menus, and here it is [CODE]<script language="JavaScript"> function ShowReg(op) { document.getElementById('Car').style.display='none'; document.getElementById('Boat').style.display='none'; document.getElementById('Plane').style.display='none'; if (op == '1') { document.getElementById('Car').style.display="block"; } if (op == 2) { document.getElementById('Boat').style.display="block"; } if (op == 3) { document.getElementById('Plane').style.display="block"; } } </script> <select id="choice" …

Member Avatar for ~s.o.s~
0
149
Member Avatar for Cr4nberry

Hi there, I have a little problem working with JavaScript, I was wondering if i could use some trick to call different variables with a base name. I'll explain it: var number1 = new Array(); var number2 = new Array(); number1[1] = "one"; number1[2] = "two"; number1[3] = "three"; number2[1] …

Member Avatar for captainbeef
0
415
Member Avatar for hknight

I use a Tab Pane Script to load form fields into tab panes. It works correctly in most browsers including Firefox and Opera however the form cannot be submitted in Internet Explorer. [url]http://d9qjx79zqpo3.googlepages.com/tabs.htm[/url] [url]http://d9qjx79zqpo3.googlepages.com/tabcms.zip[/url] To test, please click on the link in the admin area, then click on the "Save" …

Member Avatar for hielo
0
108
Member Avatar for Aamit

[code] <body onload='window.setInterval("timeHere()", 100)' onunload="sayTime()"> </body> </html> [/code] here is java script [code] <script> var time=1; function timeHere() { time = time + 1; finalTime = time / 10; } function sayTime() { finalTime = time / 10; //return finalTime; alert("Thank you for coming to my site! \n You have …

Member Avatar for diafol
0
793
Member Avatar for Kelicula

Hi all, I am usually a Perl programmer, I have some background in javascript and am attempting to create a Googleish selector div. [I]Please bear with me, excuse the long introduction...[/I] Here's the details: Our site filters content by location. I use zip codes to find radius's. So if a …

Member Avatar for hielo
0
234
Member Avatar for Aamit

This is script [code] <script> var time=1; function timeHere() { time = time + 1; finalTime = time / 10; } function sayTime() { finalTime = time / 10; } </script> <body onload='window.setInterval("timeHere()", 100)' onunload="sayTime()"> </body> [/code] I want to get the time i.e. value of finalTime in ajax varable. …

Member Avatar for ~s.o.s~
0
94
Member Avatar for AnilKumar_502

Hi All, I am new to .Net. I am converting a source which is in .net 1.1 to .net3.5. In 1.1 those people had used scritps for calendar popup. Let me show the sample code first In JSCalendar.aspx ---------------------------------- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="JSCalendar.aspx.cs" Inherits="JSCalendar" %> <!DOCTYPE html PUBLIC "-//W3C//DTD …

Member Avatar for Ramy Mahrous
0
140
Member Avatar for Tom Tolleson

Hello. I've got a page with a <div> that is a dojo.dnd.source and another <div> that is a dojo.dnd.target. I am able to drag objects from the source to the target successfully, but I would like to be able to drag them back again as well. Any advice on this? …

Member Avatar for jamespw
0
133
Member Avatar for nedrah128

In this code it takes phone 2 when I click box and copies the value to a que box . But when I change "phone2" to "email" so on the click it will copy the email value to the que box. The result is undefined. But if I put all …

Member Avatar for nedrah128
0
178
Member Avatar for chanderk

Hi, I have the following piece of code. <html> <script language=javascript type='text/javascript'> function Getlink(a, b) { var targetURL=""; switch(a) { case 'param1': switch(b) { case 'param2': targetURL="http://www.google.com"; break; } break; default: break; } return targetURL; } </script> <body> <p> <!--<a href="javascript:Getlink('param1', 'param2')">Test google</a>--> <a href="#" target="content" onClick="document.location.href=Getlink('param1', 'param2');">Test google</a> <a …

Member Avatar for hielo
0
89
Member Avatar for 3210

Hi, I am new to JS. Long time passed trying to understand JS basics and functions...may be it's time for asking some help. Om my exam pages I have <iframe> and <img> to change pages in the iframe. I have links to other 5 pages that are opened in the …

Member Avatar for 3210
0
134
Member Avatar for heryasa

i need help to build web chat using ajax and php for my final project to get my bachelor degree. the feature include: room chat, private chat, file transfer, voice chat, and video chat. who want to help me please feel free to email me at <snipped> thanks

Member Avatar for SavuthHeng
0
104
Member Avatar for joewazen

hello, i want to open several ie windows but the problem is that when i use window.open only one ieexplorer thread is used no matter how many windows i open which is causing me session time out problems when closing one of the windows so my question is can u …

Member Avatar for ~s.o.s~
0
180
Member Avatar for gennickmchi
Member Avatar for bondo

Hey everyone. I am working on adding a 'search' field to a page and I'm using ajax to update the content of the page. When someone types a letter into the search box, the page content updates based on what they type. I have this all working as far as …

Member Avatar for bondo
0
259
Member Avatar for sivak

i have one text box date of birth and submit button ..if i click that submit button the calender should open ...if we selevt any one of the date on that calender the date should display in dataof birth text box.. can anyone tell me the javascript code for this …

Member Avatar for sivak
0
78
Member Avatar for veledrom

Hi, When i click on submit button, javascript is going to check a particular textbox if it is empty. If it is then don't validate the form and make a text message visible from invisible. How can i do it? No CSS please. thanks [code] <form name="form1" method="post" action="a.html" onsubmit="return …

Member Avatar for veledrom
0
131
Member Avatar for cpeeyush1

hi i am new to java script and i am designing my web site but i want to load a new image on a particular place of my web page when a user hover over the home,contact us link so pls tell how can i do this if you have …

Member Avatar for essential
1
135
Member Avatar for arshadshaikh

How to play multiple wav files with embed element using javascript and/or DHMTL? I have a page with a liink to play and I need to play audio files through javascript and/or DHTML with embed element.

Member Avatar for ~s.o.s~
0
92
Member Avatar for edek

The code is: [CODE=JAVASCRIPT] var func = function(){ this.a(){ //here 'this' refers to 'func' }; var b = function(){ //here 'this' refers to 'window' }; }; [/CODE] This is kind of beginner question, but are there any simple rules that I can follow to determine what context I'm currently in? …

Member Avatar for ~s.o.s~
0
75
Member Avatar for squarkman

I have a field set as number (num) for validation. The code below will only allow numbers to be accepted in the field. I would like to modify it such that is MUST have at least two numbers and as many characters as the person wants to type. Can it …

Member Avatar for sid78669
0
145
Member Avatar for ajithraj

Haii. I want to resize an image before uploading it to the server.. Is there any way to do that....

Member Avatar for sillyboy
0
44
Member Avatar for Theeba

Hi Everyone; I'm working on a project to create an html form for users to input their contact information. I was wondering: is there a way to have a pre formatted text field? For example, to have a form text field that has the brackets for the area code and …

Member Avatar for hielo
0
163
Member Avatar for farshidk

hi I am trying to assign open a page in a new window, the following codes are doing so: [code=html]<a title="" target="_blank" href=" my_page.htm"> <img border="0" src="test.gif"></a>[/code] but there are not any control on the size, scroll bar, etc. of the new window. so how can the parameters be defined …

Member Avatar for essential
0
78
Member Avatar for gilroda

Hello, I need help with embedding links within a Jquery Accordion. The code I am using is based on [URL="http://jquery.bassistance.de/accordion/demo/"]Jörn Zaefferer's JQuery Accordion plugin[/URL], with some modifications to allow for an embedded link within each accordion div. The accordion effect looks and works just fine when viewed in Safari and …

Member Avatar for gilroda
0
183

The End.