15,694 Topics
![]() | |
Hi, I want to remove the current DOM using tagName=DIV. Below function works fine in IE but not working properly in mozilla. The 'if' part is for IE and 'else' part is for mozilla FF. In 'else' part,The current DIV is not removing, only the DIV at position 1,that is … | |
I have a php user front-end and would like to validate a some fields to stop duplicates the database is oracle and the form is quite large i was wondering if it is possible with Javascript or ajax to run a select statement using php code check the values and … | |
I want to retrieve addresses supplied in a database and on page load, have a map be populated with markers at the location of those addresses. I can get the information from the database, but I can't figure out how to call the showAddress function and pass in the value … | |
I am trying to open a larger picture of the original picture that is in the html document. in the html its called "bild.png" and I want to open a larger one called "big_bild.png" in a new window. I have fetced all the images and sorted out the one I … | |
AJAX n00b. Bear with me. I have an AJAX object requesting the date modified header of a file, and performing another function based on the result when the request returns ready state 4. This works. Now I'd like to do the same thing to a series of files. This is … | |
Hi all..i make a program use javascript to call VB.Net function..but it doesn't work...can somebody help me to check this code... [code=vb.net] Imports System.Runtime.InteropServices <ComVisible(True)> _ Public Class Form1 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load WebBrowser1.ObjectForScripting = True WebBrowser1.DocumentText = "<Script language='JavaScript'>" & vbCrLf … | |
![]() | Hi, I'm probably just blind or something, but IE7 just stopped letting a popup I've written in javascript from opening in a (duh!) popup window. Instead, it's loading in the same tab as the link was called from. That violates the tab settings I have established to pretty much open … |
Hi, I have a register page where there is a field for confirming the password. I have a function that evaluates if the two boxes have the same text and I call this function in the form tag, but it doesn´t work. Can someone help? Thanks in advance. Function: function … | |
Hi can a get the inline calender with the controls as shown in figure. I already developed calender only using java script. But not able to select date using the same inline calender. | |
hi i wish to learn ajax and cms can anyone help me,please tell how to start with them, which is the best site to learn them and from where to download please | |
Hello, this is my first post here, but I'm having some trouble figuring out what I messed up on my code :( I'm making a Javascript game of Hangman for one of my classes and I originally had the input as a text box where you physically type in the … | |
Hai, I made a captcha verification in my php page and refresh the image using a simple javascript. Everything working fine in IE .. But in FF the refresh of image is not working... This is my code... Please advice [ICODE]<script language="javascript"> function refreshCaptcha(){ document.getElementById('code').value=''; document.getElementById('captchaImage').src="captcha.php"; } </script>[/ICODE] Thanks in … | |
This is my first time really using HTML, Javascript and PHP. This is part of a prototype for a project for my SW Eng. course. The problem I am having is that the form is not going through the validation. The user is supposed to be able to search by … | |
Hi, In my page I have a checkBoxList and I need to select all items that has an specific word. Let's suppose my CBL is: VB.NET C#.NET Java2SE Java2EE And suppose that I need to select only the items about .NET (the items that cointain the string ".NET"). How can … | |
Problem with storing values in Array from php to AJAX index.php [CODE] <html> <head> <title>Main Page</title> <script language="javascript" type="text/javascript"> function ajaxFunction() { var xmlhttp = new XMLHttpRequest(); xmlhttp.onreadystatechange = function() { if(xmlhttp.readyState==4) { var arr = new Array(xmlhttp.responseText); alert(arr[0]); } } xmlhttp.open("GET","main.php?q="+document.frm.Act.options[document.frm.Act.selectedIndex].value,true); xmlhttp.send(null); } </script> </head> <body> <form name="frm" id="frm" … | |
This purpose of this thread is for anyone who wants to learn JQUERY. [url]http://jquery.com/[/url] here are the demo's that you can easily apply on your website. [url]http://jqueryui.com/demos/[/url] do you have any ideas about jquery? thanks | |
Hello all, I am trying to update the .onclick event after its been clicked once. Everything works fine in my script except updating the .onclick event. I have searched the web and found that I should do the following: div.onclick = function(params); or div.onclick = new function(){updatedStatement}; I have tested … | |
Hi Guys, any one can reply me on if we can do some thing like in flash or java or dll or not sure for example [url]http://www.screentoaster.com/[/url] click on ?start recording?. [url]http://screenr.com/[/url] click on ?Record your screen cast now? [url]http://www.screencast-o-matic.com/[/url] click on ?Create? button. , basically i want transparent frame … | |
How do i add my ajax-loader.gif to my js. and what kind does the script look like.... Thank you to everyone.... My js. below [CODE]var Spry; if (!Spry) Spry = {}; if (!Spry.Widget) Spry.Widget = {}; Spry.Widget.TabbedPanels = function(element, opts) { this.element = this.getElement(element); this.defaultTab = 0; // Show the … | |
Hi there, nice to be part of the forum, and sorry for my English, I will try my best but is not my mother tongue. With bigger monitors available on the market the gap between 1024x768px and 1920x1200px is now really huge so I need to manage a photography website … | |
Hi all, I made a script that can be used as a captcha. It shows a random amount of (roman) letters sliding by every 2000 miliseconds (thats why its called [B]Matrix[/B]Captcha. But I am not sure wether it is able to stop bots from spamming. Does anyone have a suggestion … | |
Hi guys, I'm wondering if you guys can help me to perform on-demand javascript using AJAX? If you can help me with a simple example, I would really appreciated. my question is: how to get a javascript code from my server and execute it? Thanks for the help | |
I have this var x = window.event.clientX; var y = window.event.clientY; i get the x and y coordinates on button click i do this x = x+10; y = y +10; how can I now on this position X AND Y, pop up an imageon that position?? | |
well i m using the new Ajax.InPlaceEditor here when i click on perticular id's elements's text then it converts to textbox for eg, the following code is in my page <span id='abc' > Some Text </span> when i click on this span then `some text ` will be in text … | |
I want javascript to download a file automatically in every 3 mins and save it to my server. Is it possible. What will be the javascript code? thanks Lavi | |
Ciao, this function should show only selected items, in firefox always works, but with IE works only the first time, then are visualized all the elements visualized previusly [CODE] function showMapLegend(id){ alert(id); var elem=document.getElementById(id); var tohide=document.getElementsByName('legend'); for(var i=0;i<tohide.length;i++){ tohide[i].style.display='none'; } elem.style.display = ''; [/CODE] | |
hello.... is javascript works in mailbody? i mean admin sends registration form through email to new users. for that registration form validation javascript is not working. any suggestions | |
I'm trying to create a type of moodboard where you can drag drop and resize pictures on. but i want to create a carousel that shows the available pictures that you can drag and drop onto or into the mood board div. i have either the problem that i cant … | |
Hello all, I am not sure if I should post this in this forum or the PHP forum. Basically, I am designing a web application for a school project. On the delete action, I want to prompt the user to make sure they mean delete. I was wanting to use … | |
Hello everyone, I hate to be a bother, but I'm having some difficulty figuring this out. Through an AJAX implementation, I am receiving a SQL Query result that has: [LIST=1] [*]An object's attribute delimited by a comma [*]An entire object (database row) delimited by a colon [/LIST] This is an … |
The End.