15,120 Topics

Member Avatar for
Member Avatar for hindu times

Hi there, I wondered if you could help me. I'm currently using Colorbox on a page (which is actually going to appear within an iframe in Facebook) - [url]http://www.rjthompsonmusic.com/facebook/fb_store_music_test.html[/url] I'm trying to get it so that when a user clicks the Buy button on the Colorbox (click the cd artwork …

0
122
Member Avatar for branding4you

Hey I have a serach page with several dropdowns that changes country state city as you select them, an then tehres type that has general best priced and special listed in it, (AJAX and javascript) i want to change it so that when the user select "Specials" that it does …

0
72
Member Avatar for Elbudster

Hello, For a web app I am building, I am dynamically loading additional JavaScript and CSS files on demand (after the initial page load). According to the html specs, both the <script> and <link> elements support the onload event. I can get <script> tags to load and fire an onload …

Member Avatar for matsko
0
620
Member Avatar for sandra500

Hi Everyone, I am new to this forum and a total newbie, and it looks like the most interesting place to ask this question. I am trying to come up with an easy instant price quote calculator in javascript for a window blinds website i want to start. The price …

0
74
Member Avatar for rejisha

hi friends.... Can we check whether the javascript is enabled or not in the client browser??? thanx in advance....

Member Avatar for jdjdjks
0
682
Member Avatar for Niveditya

ajax.html [CODE]<html> <head> <title> Ajax at work </title> <script language = "javascript"> var XMLHttpRequestObject = false; if (window.XMLHttpRequest) { XMLHttpRequestObject = new XMLHttpRequest(); } else if (window.ActiveXObject) { XMLHttpRequestObject = new ActiveXObject("Microsoft.XMLHTTP"); } function getData(dataSource, divID) { if(XMLHttpRequestObject) { var obj = document.getElementById(divID); XMLHttpRequestObject.open("GET", dataSource); XMLHttpRequestObject.onreadystatechange = function() { if …

Member Avatar for Niveditya
0
167
Member Avatar for pspunlimited

I want to ask regarding ajax tab container. the scenario would be. the user must complete first a specific requirements that is need to fill up. and when it is now filled up. by clicking the next button. a next tab container would appear next to it and the next …

0
91
Member Avatar for Clanstrom

Hi there. Thinking about creating a membership registration-enabled website, that will store people names and some info about them, after they register, but what i can't begin to make is a PHP code that whenever, a user searchs ( In a search box ) a name of another user, that …

Member Avatar for ivatanako
0
204
Member Avatar for Clanstrom

Hi there all, just joined today loved this site already. My Question is that. i am trying to create 6 Menus for my Web. like Eg { home, about us, service ..... } and i want the images to change whenever the users mouse hovers the menu's. I got the …

Member Avatar for Clanstrom
0
218
Member Avatar for hindu times

Hi there. I'm currently using the code below to trigger the "Post To Wall" script in my Facebook iframe app (the script that allows a user to post a certain piece of content to their wall). I'm pretty dense with this stuff, so I was wondering how I go about …

0
114
Member Avatar for Dean_Grobler

Hi there guys, I would just like to know how I would go about by searching through a <select> list in an HTML page? I assume one would use JavaScript for something like this. On the HTML page there's a textbox which the user can type in a keyword, and …

Member Avatar for haleel
0
7K
Member Avatar for jainam08

hello.. i'm having web page having javascript, css, HTML, etc, and i'm using mozila firefox browser, its working fine but when i'm going to open it on Internet Explorer the resolution is getting changed, so i'm not getting this problem. i know one procedure in javascript it is browser sniffing …

Member Avatar for jainam08
0
271
Member Avatar for sciprog1

Hello Members, Can anyone recommend any easy-to-use and free JavaScript IDEs? Thank you!! sciprog1

Member Avatar for ivatanako
0
296
Member Avatar for hamburger_lover

Hy! A friend of mine recently told me that, now, in 2011, [I]Ajax [/I]is a [B]pure [/B]synonym of [I]DHTML[/I], and that DHTML is an old world that we should not use anymore. He told me that it is called "Ajax" as long as you use standard technologies (XHTML, JavaScript, XML, …

Member Avatar for ivatanako
0
111
Member Avatar for newbie14

Dear All, Below I have a code which when press the add button will keep adding the row. I would like to learn further about jquery. Why must we always include jquery-1.5.1.min.js is that the functionality is it? Next why must we call table.dynatable is the dynatable is the id …

Member Avatar for newbie14
0
176
Member Avatar for filch

At [url]http://streetkids.zuka.net/sandbox/map-new.05.html[/url] the app you see there works as expected in IE8 and Firefox etc. But, IE7 does not work. While the plugin I used does indeed seem to function under IE7, mine is not and I have not been able to track it down. This functionality was built from …

Member Avatar for filch
0
111
Member Avatar for AMADH

Hello, I am trying to learn how to use animation, and i have it working a little but I can't get it to move my box. I was wondering if someone might be able to let me know what I am doing wrong here. [CODE]<script language="javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js" type="text/javascript"></script> <script type="text/javascript"> …

Member Avatar for AMADH
0
228
Member Avatar for tyson.crouch

G'day guys, Given that I am (sort of) new to javascript I have the following code; [CODE]<html> <head></head> <script type="text/javascript"> [INDENT]function insertBold(tArea){ [INDENT]var unselectedText = tArea.value; var selectedText = tArea.value.substr(tArea.selectionStart, tArea.selectionEnd); var v = "[B]" + selectedText + "[/B]"; var temp_array = tArea.value.split(selectedText); tArea.value = v;[/INDENT] }[/INDENT] </script> <body> [INDENT]<textarea …

Member Avatar for haleel
0
77
Member Avatar for zac1987

index.php file <script type="text/javascript" src="../lib/jquery-1.4.2.min.js"></script> <script type="text/javascript" src="../lib/jquery.jcarousel.min.js"></script> <script type="text/javascript"> jQuery(document).ready(function() { jQuery('#mycarousel').jcarousel({ vertical: true, scroll: 3, visible: 12 }); }); </script> <ul id="mycarousel" class="jcarousel jcarousel-skin-tango"> <li>I love you haha.</li> <li>I love you haha.</li> <li>I love you haha.</li> </ul> --------------------------------------------------------------------------- From the above code, I use firebug to inspect the …

Member Avatar for zac1987
0
199
Member Avatar for kerp

Hi During the last 6 months or so I've worked on and off on a couple of a classes to send data over network using winsock and asynchronous sockets on windows. Basically my system works like this. The server will send packets on a connection until WSAGetLastError() returns WSAEWOULDBLOCK the …

Member Avatar for gusmcn
0
506
Member Avatar for zizuno

This is just a dumbed down version of my web application. I successfully did an on submit earlier but deleted it somehow. So I deleted everything not essential to make sure nothing interferes. If I remove the submit part, it appends just fine. I am a noob with jquery, help …

0
51
Member Avatar for emily-bcot

Hi, There are two textboxes, one(id:sites) is to display a dropdown list when user input any letters, another(id:siteID) is to catch the value when selecting an item from dropdown list. see example at: [url]http://jqueryui.com/demos/autocomplete/[/url] Below is my code: [CODE]var siteNames =new Array("ASDA","Tesco","Boots"); var siteIDs =new Array(1,3,7); for (i=0; i<siteIDs.length;i++){ $( …

Member Avatar for scrappedcola
0
121
Member Avatar for denmarkstan

please let someone just give a detail of significant difference between Ajax and PHP. WHICH I CAN ENJOY PROGRAMMING

Member Avatar for scrappedcola
0
83
Member Avatar for starsinthesky

hello guys! im just wondering if it is possible to edit the caption of an image while it's being viewed through lightbox?

0
77
Member Avatar for iamchamith

hi friends, This question is belongs to the iframe... I was created 2 iframe call _1.html and _2.html.. In that each child iframes there is the button avaiable in first time parent page load _1.html... when user click the button in _1.html, I must load _2.html page without refreshing parent …

Member Avatar for SolidSolutions
0
80
Member Avatar for MackeyJenkins

[B] I'm trying to get my website, download the files instead of opening them eg. images it wont download them it just opens them to view in a new tab. is there a JavaScript or html even way of doing this?[/B]

0
52
Member Avatar for karthiga p

hi I CREATED A VF PAGE. IN THAT THERE IS A MODIFY BUTTON. WHILE CLICK ON THAT IT SHOULD VALIDATE THAT ONE CHECKBOX MUST BE SELECTED. CAN ANY BODY HELP ME TO WRITE THE CODE FOR THAT IN VF PAGE

0
38
Member Avatar for alam14_mist

I have use following code [CODE] string msg = "Saved Successfully."; Label lbl = new Label(); lbl.Text = "<script language='javascript'>" + Environment.NewLine + "window.alert('" + msg + "') </script>"; Page.Controls.Add(lbl);[/CODE] How can I change the icon? (I also tried by :window.alert('" + msg + "',3))

0
53
Member Avatar for anita_86

Hi!! I am trying to find out solution for this since long. I tried js but as I am not good with it, I just want to do this through PHP. I am adding dynamic rows when user clicks the Add Row button.I want to show the calculated amount like: …

Member Avatar for anita_86
0
207
Member Avatar for pandaEater

I'm new to AJAX, PHP, and Javascript and I'm trying to learn more about them by setting up a user login for a website. I've gotten it working but there are a few problems I'm having trouble solving. Right now the login works, but I'd like to check if the …

0
86

The End.