15,127 Topics
| |
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 … | |
| 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 … |
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 … | |
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 … | |
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 … | |
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" … | |
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] … | |
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" … | |
[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 … | |
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 … | |
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. … | |
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 … | |
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? … | |
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 … | |
| 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 … |
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 … | |
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 | |
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 … | |
Hi, I'm new to the forum and just saying hello. | |
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 … | |
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 … | |
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 … | |
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 … | |
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. | |
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? … | |
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 … | |
Haii. I want to resize an image before uploading it to the server.. Is there any way to do that.... | |
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 … | |
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 … | |
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 … |
The End.