14,054 Topics

Member Avatar for
Member Avatar for ximath

Hi All, I have been desperately trying to solve a serious ajax issue and decided to try asking it here. I have simplified the problem and will illustrate it with an example. First of all, please consider; [CODE]<span onClick='makeClickRequest();'><a href='http://www.google.com'>Text Here</a></span>[/CODE] where the javascript is about [CODE] function makeClickRequest() { …

Member Avatar for ~s.o.s~
0
259
Member Avatar for lonestar23

Hello, I am having problems retrieving correct values from two radio buttons in my AJAX script below. The radio button values are either a 1 or 0 and always produces 0 regardless of which button is selected. Once in AJAX, I can not have the script retreive a 1 or …

Member Avatar for essential
0
1K
Member Avatar for chandanmahajan

Hi, I am working on the application in which Ajax, JSP, Javascript and html is used in UI part. We have our own UI frame work in which we update the page through AJAX. i.e. Initially page is loaded and later on we request to AJAX to update that particular …

Member Avatar for langsor
0
117
Member Avatar for Mylena

Hi, In the code below, when I click on the link [I]Colour[/I], it needs to connect to javascript function and display "Hello" or alert message. For some reason, it does not do it. If anyone spots a mistake, pleeese let me know - I'll be here. Appreciate! [CODE] <!DOCTYPE html …

Member Avatar for Mylena
0
170
Member Avatar for lonestar23

Hello, I am having problems retrieving correct values from two radio buttons in my AJAX script below. The radio button values are either a 1 or 0 and always produces 0 regardless of which button is selected. Once in AJAX, I can not have the script retreive a 1 or …

Member Avatar for lonestar23
0
109
Member Avatar for Alex5248

Hi everyone, I tried to embed a video from YOUTUBE to my website with autostart. The suggested code is [code]<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/52_wba_dzKs&hl=en&fs=1&rel=0"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/52_wba_dzKs&hl=en&fs=1&rel=0" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object>[/code] I modified it [code]<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/52_wba_dzKs&hl=en&fs=1&rel=0"></param> <param name="allowFullScreen" value="falce"></param> <param name="allowAutoPlay" value="true"></param> <embed src="http://www.youtube.com/v/52_wba_dzKs&hl=en&fs=1&rel=0" type="application/x-shockwave-flash" allowfullscreen="falce" allowAutoPlay=”true” …

Member Avatar for Alex5248
0
187
Member Avatar for OmarKhatib

Hope I am posting to the right place. I am creating a form in Acrobat that needs a little Javascript, but I don't know anything about JavaScript so any help will be appreciated. In the form there are for separate price fields and a field that automatically fills in an …

Member Avatar for OmarKhatib
0
123
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 langsor
0
136
Member Avatar for dele454

[IMG]http://www.killerinstinct.co.za/gall.jpg[/IMG] Hi, I have a galleries page in the CMS am developing that looks like the above. This section of the page allows the admin to upload multiple pictures taken by a photographer. On clicking the 'edit' button on any thumbnail - whether a blank or already uploaded pic thumbnail, …

Member Avatar for langsor
0
68
Member Avatar for Diode

I don't know what happened to my previous topic about this. But I am using an AJAX menu on a page I am making for somebody, and I used the exact same code w3schools recommends to use: [CODE]function updatemenu(leagueno, confno, location, mode) { xmlHttp=GetXmlHttpObject(); if (xmlHttp==null) { alert ("Your browser …

Member Avatar for langsor
0
178
Member Avatar for dev.cplusplus

Hi to all, hi have the following problem, I hope someone can help me. I need to replace special chars that appear in a string. [B]for example if I have the string:[/B] this- is a !string with special chars- [B]I want to receive[/B] this45 is a 33string with special chars45 …

Member Avatar for ~s.o.s~
0
167
Member Avatar for cskinpg

hello Possible to calculate mathematical expression like 2x(square)+3x+1 using javascript? any link i refer to perform mathematical calculations? and example

Member Avatar for langsor
0
77
Member Avatar for matthewwilkes

Hello All. I am currently working on a project which basically makes splash screens for plasma displays. Details on objects are stored in an Oracle database accessed using ASP.NET and requested using AJAX. I have already got a working version of this project which people are happy with but I …

Member Avatar for matthewwilkes
0
74
Member Avatar for electron33

If you want to create Ajax based web solutions. I will recomment ZK framework. Take a tripp to ZK I'm developing websolution with ZK, Java and PostgreSQL. [URL="http://www.zkoss.org"]http://www.zkoss.org[/URL]

0
73
Member Avatar for moerpheus

hi people, I am weak in most computer aspects, i think because of my school. I am creating this website and inside it there is a registration page. I used tables to create this page. So, text fields, radio buttons and check boxes belong to different forms. I want to …

Member Avatar for electron33
0
100
Member Avatar for shobha1335

[B][/B] Hi, I have 3 radio buttons which are in the radio button group. On tab change it has to focus on next radio button. I have written a function to do that, but Its going from first to second radio button, after that again its coming back to first …

Member Avatar for essential
0
1K
Member Avatar for veledrom

Hi, I want a messagebox or alert to appear in my screen after i click on a link. I can do popup windows but i can't do this. How do i this? Thanks

Member Avatar for essential
0
70
Member Avatar for aparnesh

The client needs to select a vendor from a drop down list (Select). The list is quite long, so it takes some time to load and scroll. It would be better if there was a way for the client to type in the first few letters of the name and …

Member Avatar for aparnesh
0
119
Member Avatar for joemalaya

hello guys i am using google ajax feed api to display feed for my site and i am having problem to display the description as a tooltips. [code] google.load("feeds", "1") function rssdisplayer(divid, url, feedlimit, showoptions){ this.showoptions=showoptions || "" var feedpointer=new google.feeds.Feed(url) feedpointer.setNumEntries(feedlimit) document.write('<div id="'+divid+'"></div>') this.feedcontainer=document.getElementById(divid) var displayer=this feedpointer.load(function(r){displayer.formatoutput(r)}) } rssdisplayer.prototype.formatdate=function(datestr){ …

Member Avatar for ~s.o.s~
0
103
Member Avatar for n00b0101

I'm trying to determine which button was pressed when I'm unsure of how many buttons there actually are... The smarty template that I'm using creates the input buttons based on a query that happens in the associated php script. I don't know how many input fields will actually be generated, …

Member Avatar for essential
0
212
Member Avatar for Scottmandoo

Well heres the code im using, can anyone either fix this code to make it work or suggest a better way of doing this, thanks. [CODE=javascript]function ValidateForm() { if (document.submitform.email.value=="") { alert("There is no email entered!"); return false; } if (document.submitform.email.value=="Enter your email...") { alert("Please enter an email!"); return false; …

Member Avatar for essential
0
117
Member Avatar for McflysPlace

I was wondering if someone could help me out here. I do not have the slightest idea how to code in AJAX. I need a swf loader for my website that will sit in the footer. The basic idea is to have a titled entry box that takes input and …

Member Avatar for langsor
-1
100
Member Avatar for antihero

Please, estimate the operation of [url=http://design.antigov.org]engine for site[/url] All the pages are made only in HTML, and there is only the text of central column material; building of menu and of other things, display of CSS styles are performed with Java Script, it should be put at the beginning of …

Member Avatar for langsor
0
94
Member Avatar for DavidB

I usually code all my Javascript in a single external file that accepts the data from a form in the main page's HTML textarea box. Now I would like to break up this single Javascript file into separate files. For example, I'd like to have main.js as the main controlling …

Member Avatar for langsor
0
130
Member Avatar for pmw

Help required please. I am using the following Multi image script: [url]http://www.javascriptkit.com/script/...ultishow.shtml[/url] Is it possible to make clicked slides that link to a unique url open in new window? Many thanks.

Member Avatar for langsor
0
97
Member Avatar for Mylena

Hello everyone, I need to create several xmlHttp objects, but I only want to have one GetXmlHttpObject() function, so that I don't have to repeat for each object. Below code is definitely wrong because... how do I return the needed object from the GetXmlHttpObject() function? Really appreciate, M [code] var …

Member Avatar for langsor
0
206
Member Avatar for GuyInOz

Hi, I run a free dating site that's written in php. I tried running banners thinking members would support the site by clicking on these, however no one is purchasing anything. Could I use some type of javascipt that would set a cookie and then force a user to perform …

Member Avatar for langsor
0
64
Member Avatar for cskinpg

hello how to purform javascript inner html loading it is possible? example ?

Member Avatar for essential
0
76
Member Avatar for Lu5ck

Hi all, How do you read specific <div> tag from responsetext? And also, is it possible to count how many <div> tag are there in responsetext? I have been googling for quite sometime but didn't find any tutorial or explanation nor answer. Thanks for the help.

Member Avatar for langsor
0
96
Member Avatar for pmw

Help required please. I am using the following Multi image script: [url]http://www.javascriptkit.com/script/script2/multishow.shtml[/url] Is it possible to make clicked slides that link to a unique url open in new window? Many thanks.

Member Avatar for masijade
0
161

The End.