active questions tagged javascript+ajax - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T16:31:48Z http://stackoverflow.com/feeds/tag/javascript+ajax http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1820706/one-page-codeigniter-site-using-jquery-ajax 0 One page Codeigniter site using jquery? ajax? sico87 2009-11-30T16:02:08Z 2009-11-30T16:07:42Z <p>Hello,</p> <p>I am hoping for some advice, imagine if you will will you are on a website and you are greeted solely with navigation menu, on click the navigation menu that is situated within the left hand side of the screen you can add various content to the right side of the screen that is loaded in individual ‘divs’ then collapsed in accordions(this effectively makes a one page site(Yes I am aware of poor SEO, Accesibility and Usability). Now this raises some questions from me. 1) What would be the best way to load in the data for each of these ‘modules’ as they are clicked. How would I load the codeigniter views in with leaving the index page? 2)The user can also remove ‘modules’ how could this be achieved without leaving the page? 3)If there are 3 pages that are loaded in from 3 different views all in an accordion how can i make it so only one accordion can be open? 4)If the ‘module’ has further links within it, it should load in another view to left of it, how could I control this?</p> <p>I know I am asking alot of advice but I have never seen anything on the web that is like this and would really appreciate some feedback on the best way to approach this. </p> http://stackoverflow.com/questions/1035731/looking-for-an-ajax-or-php-trick-to-detect-if-they-have-javascript 0 Looking for an Ajax or PHP trick to detect if they have Javascript... Mike Curry 2009-06-23T23:10:59Z 2009-11-30T15:45:32Z <p>I am looking for some kind of trick to determine if a user has javascript... I figure I could do it somehow by sending a ajax request at the top of a page, and in that ajax request, set a session variable, and then somehow reload the page, and see of it was set...</p> <p>Is there any tricks like this around in PHP/AJAX?</p> http://stackoverflow.com/questions/1228988/comet-javascript-libraries-that-support-multiple-windows 0 Comet JavaScript libraries that support multiple windows JW 2009-08-04T17:52:32Z 2009-11-30T14:00:04Z <p>Are there any free <a href="http://en.wikipedia.org/wiki/Comet%5F%28programming%29" rel="nofollow">Comet</a> JavaScript libraries that allow multiple windows/tabs to reuse the same connection? In other words, when you open a second window, it detects that you have another window open under the same domain. Rather than open a new connection, it starts listening to the other window's connection. That way it can stay within the browser's per-domain connection limit.</p> <p><a href="http://www.lightstreamer.com/" rel="nofollow">Lightstreamer</a> seems to handle this well, but I'd prefer something open-source.</p> http://stackoverflow.com/questions/1540805/javascript-problem-rss-feed-display 0 javascript problem, rss feed display MG 2009-10-08T22:13:19Z 2009-11-30T13:26:29Z <p>hi, my code lists items from an rss feed onto an html page. although, the java script is a little finicky. it won't read some xml feeds, usually the feeds containing list items over 25. I just need another set of eyes to take a look at the code and tell me if i'm missing something obvious.</p> <pre><code>.js file----------------------------------------------- //XML CODE var http_request = false; var dataFileName = new Array(); dataFileName[1] = "http://newsrss.bbc.co.uk/rss/newsonline_world_edition/americas/rss.xml"; //dataFileName[2] = "http://newsrss.bbc.co.uk/rss/newsonline_world_edition/uk_news/magazine/rss.xml"; //dataFileName[3] = "http://newsrss.bbc.co.uk/rss/newsonline_world_edition/business/rss.xml"; function getData(dataFileIndex) { if (window.ActiveXObject) { //IE http_request = new ActiveXObject("Microsoft.XMLHTTP"); } else if (window.XMLHttpRequest) { //other http_request = new XMLHttpRequest(); } else { alert("your browser does not support AJAX"); } http_request.open("GET",dataFileName[dataFileIndex],true); http_request.setRequestHeader("Cache-Control", "no-cache"); http_request.setRequestHeader("Pragma", "no-cache"); http_request.onreadystatechange = function() { if (http_request.readyState == 4) { if (http_request.status == 200) { if (http_request.responseText != null) { processRSS(http_request.responseXML); } else { alert("Failed to receive RSS file from the server - file not found."); return false; } } } } http_request.send(null); } function processRSS(rssxml) { RSS = new RSS2Channel(rssxml); outputData(RSS); } function RSS2Channel(rssxml) { this.items = new Array(); var itemElements = rssxml.getElementsByTagName("item"); for (var i=0; i&lt;itemElements.length; i++) { Item = new RSS2Item(itemElements[i]); this.items.push(Item); } } function RSS2Item(itemxml) { this.title; this.link; this.description; this.pubDate; this.guid; var properties = new Array("title", "link", "description", "pubDate", "guid"); var tmpElement = null; for (var i=0; i&lt;properties.length; i++) { tmpElement = itemxml.getElementsByTagName(properties[i])[0]; if (tmpElement != null) { eval("this."+properties[i]+"=tmpElement.childNodes[0].nodeValue"); } } } function outputData(RSS) { dataString = ""; for (var i=0; i&lt;RSS.items.length; i++) { dataString += "&lt;div class='itemBlock'&gt;"; newDate = new Date(RSS.items[i].pubDate); dateString = (newDate.getMonth()+1) + "/" + newDate.getDate() + "/" + newDate.getFullYear(); dataString += "&lt;div class='itemDate'&gt;" + dateString + "&lt;/div&gt;"; dataString += "&lt;div class='itemTitle'&gt;&lt;a href='" + RSS.items[i].link + "' target='afps_news'&gt;" + RSS.items[i].title + "&lt;/a&gt;&lt;/div&gt;"; //dataString += "&lt;div class='itemDescription'&gt;" + RSS.items[i].description + "&lt;/div&gt;"; dataString += "&lt;/div&gt;"; } document.getElementById('outputBlock').innerHTML = dataString; } //SCROLL BAR CODE var ie=document.all; var nn6=document.getElementById&amp;&amp;!document.all; var isdrag=false; var x,y; var dobj; var scrollPercent; var boxTop; var maxHeight; var toppoint; function movemouse(e) { if (isdrag) { //dobj.style.left = nn6 ? tx + e.clientX - x : tx + event.clientX - x; toppoint = (nn6) ? ty + e.clientY - y : ty + event.clientY - y; boxTop = parseInt(document.getElementById('scrollBarBox').style.top) - scrollBarBoxOffset; if (toppoint &lt; boxTop) toppoint = boxTop; boxHeight = parseInt(document.getElementById('scrollBarBox').style.height); maxHeight = boxTop + boxHeight - parseInt(document.getElementById('scrollBar').style.height); if (toppoint &gt; maxHeight) toppoint = maxHeight; dobj.style.top = toppoint + "px"; scrollPercent = toppoint / maxHeight; document.getElementById('textWindow').style.top = parseInt(0 - (document.getElementById('textWindow').offsetHeight - parseInt(document.getElementById('scrollBarBox').style.height)) * scrollPercent ); return false; } } function selectmouse(e) { var fobj = nn6 ? e.target : event.srcElement; var topelement = nn6 ? "HTML" : "BODY"; while (fobj.tagName != topelement &amp;&amp; fobj.className != "dragme") { fobj = nn6 ? fobj.parentNode : fobj.parentElement; } if (fobj.className == "dragme") { isdrag = true; dobj = fobj; //tx = parseInt(dobj.style.left + 0); ty = parseInt(dobj.style.top + 0); //x = nn6 ? e.clientX : event.clientX; y = nn6 ? e.clientY : event.clientY; document.onmousemove = movemouse; return false; } } document.onmousedown = selectmouse; document.onmouseup = new Function("isdrag=false;"); html file------------------------------------------------------------------- &lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"&gt; &lt;HTML&gt;&lt;HEAD&gt;&lt;TITLE&gt;TEST&lt;/TITLE&gt; &lt;META http-equiv=Content-Type content="text/html; charset=windows-1252"&gt; &lt;SCRIPT src="script1.js"&gt;&lt;/SCRIPT&gt; &lt;STYLE&gt;BODY { MARGIN: 0px; FONT: 8pt arial } #widgetBody { BACKGROUND-Color:gray; WIDTH: 240px; POSITION: relative; HEIGHT: 299px } #textWindowBox { LEFT: 63px; OVERFLOW: hidden; WIDTH: 152px; POSITION: absolute; TOP: 70px; HEIGHT: 221px } #textWindow { PADDING-TOP: 7px; POSITION: relative } #scrollBarBox { LEFT: 221px; WIDTH: 12px; POSITION: absolute; TOP: 74px; HEIGHT: 216px } #scrollBar { BACKGROUND: url(images/widget_scroll-handle1.gif) no-repeat; WIDTH: 12px; POSITION: relative; HEIGHT: 40px } #defenseLinkLink { LEFT: 4px; WIDTH: 20px; CURSOR: pointer; POSITION: absolute; TOP: 155px; HEIGHT: 140px; BACKGROUND-COLOR: transparent } #defenseLinkLink A { DISPLAY: block; WIDTH: 20px; HEIGHT: 140px } .dragme { POSITION: relative } .itemBlock { PADDING-RIGHT: 0px; PADDING-LEFT: 0px; PADDING-BOTTOM: 4px; MARGIN: 0px 0px 3px; PADDING-TOP: 0px; BORDER-BOTTOM: #adafb3 1px dotted } .itemDate { FONT-SIZE: 0.9em; COLOR: #666; LINE-HEIGHT: 1.1em } .itemTitle { FONT-WEIGHT: bold; LINE-HEIGHT: 1.1em } .itemTitle A { COLOR: #254a7d; TEXT-DECORATION: none } .itemDescription { } &lt;/STYLE&gt; &lt;SCRIPT&gt; var scrollBarBoxOffset = 74; function init() { document.getElementById('scrollBarBox').style.top = "74px"; document.getElementById('scrollBarBox').style.height = "216px"; document.getElementById('scrollBar').style.height = "40px"; } &lt;/SCRIPT&gt; &lt;META content="MSHTML 6.00.6001.18294" name=GENERATOR&gt;&lt;/HEAD&gt; &lt;BODY onload=init()&gt; &lt;DIV id=widgetBody&gt; &lt;DIV id=textWindowBox&gt; &lt;DIV id=textWindow&gt; &lt;DIV id=outputBlock&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt; &lt;DIV id=scrollBarBox&gt; &lt;DIV class=dragme id=scrollBar&gt;&lt;/DIV&gt;&lt;/DIV&gt; &lt;DIV style="CLEAR: both"&gt;&lt;/DIV&gt;&lt;/DIV&gt; &lt;SCRIPT language=javaScript&gt;getData(2)&lt;/SCRIPT&gt; &lt;/BODY&gt;&lt;/HTML&gt; </code></pre> http://stackoverflow.com/questions/1717223/anchored-ajax-and-seo-workaround 0 Anchored AJAX and SEO workaround? Supercharged 2009-11-11T18:35:31Z 2009-11-30T13:25:54Z <p>You all know how to build AJAX sites with those 300ms trigger for checking anchors (hash links) in URL and then loading proper page with AJAX. But, these anchor links are nothing to search engines =(</p> <p>I've thought of making some kind of workaround. All JS code remains the same, but, this little thing (I'm with JQuery, sorry):</p> <pre><code>$('a').live("click",function(){ var lnk = $(this).attr("href"); document.location.hash = lnk; return false; }) </code></pre> <p>And then, you replace your anchor links in the body with plain links, build corresponding plain pages (still containing all JS codes) for non-javascript users and search engines. For normal visitors you would have plain links converted into hashes on fly and AJAX content loaded immediately. For those who are trying to load certain pages found through search engine - they will, and after that visitor will continue to move around with ajax navigation... somehow (remember, those plain direct pages still contain JS code).</p> <p>I just want to make sure my assumptions are right. Are they?</p> <p><strong>Update:</strong> Bad thing is that when user directly enters some internal page with for ex. <em>/portfolio</em> address, he would then continue to <em>/portfolio#contacts</em> or similar URLs that are not so pretty, but still working (I mean <em>/portfolio#contacts</em> would show contacts).</p> http://stackoverflow.com/questions/648899/a-question-about-cross-domain-subdomain-ajax-request 0 A question about cross-domain (subdomain) ajax request. Vasil 2009-03-16T00:49:44Z 2009-11-30T11:55:24Z <p>Let's say I have the main page loaded from <a href="http://www.example.com/index.html" rel="nofollow">http://www.example.com/index.html</a>. On that page there is js code that makes an ajax request to <a href="http://n1.example.com//echo?message=hello" rel="nofollow">http://n1.example.com//echo?message=hello</a>. When the response is received a div on the main page is updated with the response body.</p> <p>Will that work on all popular browsers?</p> <p>Edit:</p> <p>The obvious solution is to put a proxy in front of www.example.com and n1.example.com and set it so that every request going to a subresource of <a href="http://www.example.com/n1" rel="nofollow">http://www.example.com/n1</a> gets proxied to <a href="http://n1.example.com/" rel="nofollow">http://n1.example.com/</a>.</p> http://stackoverflow.com/questions/1818677/problem-while-executing-ajax 1 Problem while executing ajax i2ijeya 2009-11-30T09:09:14Z 2009-11-30T11:53:36Z <p>I am trying to do a simple application using Ajax and servlet. But when i was trying to execute the application, it is not working. Please go through the code and let me know what would be the problem?</p> <pre><code>function createRequest() { alert("hai createRequest()"); try { req=new XMLHttpRequest(); } catch(trymicrosoft) { try { req=new ActiveXObject("Msxml2.XMLHTTP"); } catch(othermicrosoft) { try { req=new ActiveXObject("Microsoft.XMLHTTP"); } catch(failed) { req=null; } } } if(req==null) alert("req==null"); } function startRequest() { alert("hai startRequest()"); createRequest(); alert("hai created Request()"); var username=document.getElementById("user").value; req.open("get","http://localhost:8080/login/CheckLogin?user="+username,true); req.onreadystatechange=handleStateChange; alert("hai returned from handle state change"); req.send(null); } function handleStateChange() { alert("hai handleStateChange()"); if(req.readyState==4) { if(req.status==200) { var message=req.responseXML.getElementsByTagName("valid")[0].childNodes[0].nodeValue; document.getElementById("results").innerHTML=message; } else { alert("Sorry status failed"); document.getElementById("results").innerHTML="Sorry problem in status"; } } else { alert("Sorry readyStatus failed"); document.getElementById("results").innerHTML="Sorry problem in readyState"; } } </code></pre> <p>The above functions wrote in Javascript and in servlet </p> <pre><code>package com.assignment.login; import javax.servlet.*; import javax.servlet.http.*; import java.io.*; public class CheckLogin extends HttpServlet { public void doGet(HttpServletRequest request,HttpServletResponse response)throws IOException,ServletException { System.out.println("Hai i have entered into servlet"); String userId=request.getParameter("user"); if(userId!=null &amp;&amp; !userId.equals("jeya")) { response.setContentType("text/xml"); response.getWriter().write("&lt;valid&gt;U can use this id&lt;/valid&gt;"); } else { response.setContentType("text/xml"); response.getWriter().write("&lt;valid&gt;U cannot use this id&lt;/valid&gt;"); } } public void doPost(HttpServletRequest request,HttpServletResponse response)throws IOException,ServletException { doGet(request,response); } } </code></pre> <p>But in the output the the following alerts are being printed,</p> <pre><code>Hai start request Hai create request Hai created request Hai returned from handle state change hai handle state change sorry readyStatus failed hai handle state change sorry readyStatus failed hai handle state change sorry readyStatus failed hai handle state change sorry status failed </code></pre> <p>My web.xml,</p> <pre><code>&lt;web-app&gt; &lt;servlet&gt; &lt;servlet-name&gt;CheckLogin&lt;/servlet-name&gt; &lt;servlet-class&gt;com.assignment.login.CheckLogin&lt;/servlet-class&gt; &lt;/servlet&gt; &lt;servlet-mapping&gt; &lt;servlet-name&gt;CheckLogin&lt;/servlet-name&gt; &lt;url-pattern&gt;/CheckLogin&lt;/url-pattern&gt; &lt;/servlet-mapping&gt; </code></pre> <p></p> <p>In the servlet i have printed "I have entered into servlet" and it is not getting printed in the server window.. So what would be the problem and please give me suggesstions to resolve it... Thanks in advance...</p> <p>EDIT: this is the exception ocuring when i am trying to execute the above application.. But the class CheckLogin is at the right place... But the same code is working in eclipse. So please anyone tell me what the problem may be??? The requested resource (/login/CheckLogin) is not available.</p> http://stackoverflow.com/questions/1284381/why-is-it-a-bad-practice-to-return-generated-html-instead-of-json-or-is-it 15 Why is it a bad practice to return generated HTML instead of JSON? Or is it? Cyril Gupta 2009-08-16T14:06:37Z 2009-11-30T11:47:09Z <p>It is quite easy to load HTML content from your custom URLs/Web services using JQuery or any other similar framework. I've used this approach many times and till now and found the performance satisfactory.</p> <p>But all the books, all the experts are trying to get me to use JSON instead of generated HTML. How's it much more superior than HTML? </p> <p><strong>Is it very much faster?<br /> Does it have a very much lesser load on the server?</strong></p> <p>On the other side I have some reasons for using generated HTML.</p> <ol> <li>It's simple markup, and often just as compact or actually more compact than JSON.</li> <li>It's less error prone cause all you're getting is markup, and no code.</li> <li>It will be faster to program in most cases cause you won't have to write code separately for the client end.</li> </ol> <p>Which side are you on and why?</p> http://stackoverflow.com/questions/1818796/jqgrid-pager-in-inline-add-form 0 JQGrid: Pager in inline add form Cyril 2009-11-30T09:42:18Z 2009-11-30T09:42:18Z <p>Hi guyz,</p> <p>I'm trying to add next/prev buttons in the default add in form of a jqgrid. Do you have any idea or example to help me? I could add my own buttons, but I'd like to call the same function as framework to navigate...</p> <p>Thanks in advance.</p> <p>Cyril</p> http://stackoverflow.com/questions/188442/whats-a-good-ajax-autocomplete-plugin-for-jquery 17 What's a good AJAX Autocomplete Plugin for jQuery? Murat Ayfer 2008-10-09T18:05:41Z 2009-11-29T23:49:48Z <p>I usually use jQuery as my JS library on my sites, and I would like to stick with it since I'm familiar with it.</p> <p>I need to implement an AJAX autocomplete, mainly for suggesting search results. Here are a few I have found:</p> <ul> <li><a href="http://www.dyve.net/jquery/?autocomplete" rel="nofollow">Dylan Verheul's version</a></li> <li><a href="http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/" rel="nofollow">Jörn Zaefferer's version</a></li> <li><a href="http://www.pengoworks.com/workshop/jquery/autocomplete.htm" rel="nofollow">A modification of Dylan Verheul's version</a></li> </ul> <p>If you have tried any of these plugins, were you happy with them? Which one do you think is the most (and easily) customizable? </p> http://stackoverflow.com/questions/1816463/loading-multiple-views-from-codeigniter-using-jquery 0 Loading multiple views from codeigniter using jquery sico87 2009-11-29T19:11:05Z 2009-11-29T19:42:00Z <pre><code> &lt;script type="text/javascript"&gt; $(document).ready(function() { $('a.menuitem').click(function() { var link = $(this), url = link.attr("href"); var newDiv = '&lt;div&gt;&lt;/div&gt;'; $("#content_pane").append(newDiv); newDiv.load(url); return false; // prevent default link-behavior }); }); &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;li&gt;&lt;a class="menuitem" href="inspiration"&gt;Inspiration&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a class="menuitem" href="blog"&gt;Blog&lt;/a&gt;&lt;/li&gt; &lt;div id="content_pane"&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>The above code is semi working, when I click the button a new div id created but it prints out load(url) on the page instead of showing the page content that it is supposed to be loading does any one have any tips?</p> http://stackoverflow.com/questions/1816146/captcha-reloading-and-animated-icon-synchronization-problem 0 Captcha reloading and animated icon synchronization problem Narek 2009-11-29T17:36:25Z 2009-11-29T18:22:24Z <p>Dear web developers, I want to create a captcha in my website. I will try to describe how I want to do that. See the code below please:</p> <pre><code>&lt;img src=”captcha_img.png”&gt; &lt;img src=”reload.png”&gt; &lt;a href=”..”&gt;Reload Captcha Image&lt;/&gt; </code></pre> <p>What I want to do is, to click on “Reload Captcha Image” link and with JavaScript change the content of the first <strong>img</strong> tag to a new captcha image, and simultaneously to change reload.png to reload.gif which is and animation that I want to last as much as the new captcha image is being processed. And I want to change back the reload.gif animation to the reload.png static image, right the same time when the new captcha image has been load image. The problem is that the captcha image is being generated by GD library of PHP, and I don’t know how much time that will take to create a new image. Please help me to be able to synchronize. May be there is a good approach for doing this kind of things… </p> <p>Thanks!</p> http://stackoverflow.com/questions/1812560/prototype-ajax-updater-eval-javascript-functions 0 Prototype Ajax.Updater Eval Javascript Functions OneNerd 2009-11-28T13:49:23Z 2009-11-28T14:33:23Z <p>I have this sample page:</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8"&gt; &lt;title&gt;Ajax Page&lt;/title&gt; &lt;script type="text/javascript"&gt; function ajax_hello() { alert ("hello"); } alert ("Hello from JS"); &lt;/script&gt; &lt;/head&gt; &lt;body&gt; This is the Ajax page. &lt;a href='#' onclick='ajax_hello();'&gt;Click here to fire off JS function&lt;/a&gt;. &lt;/body&gt; &lt;/html&gt; </code></pre> <p>I am calling it with this:</p> <pre><code>new Ajax.Updater($(element), page, { method: "get", evalScripts: true }); </code></pre> <p>The alert is running, but the function is not registering (ajax_hello()).</p> <p>Is there a way to get ajax to register a javascript function to the calling page?</p> http://stackoverflow.com/questions/1810904/ajax-controlled-multiple-select-box-strategy 0 AJAX Controlled Multiple Select Box Strategy Sakamoto Kazuma 2009-11-27T22:55:59Z 2009-11-27T23:28:11Z <p>I've done some reading on AJAX, and would like to create a listbox, that controls what is displayed in a separate textbox located within the same form. The backend of the website is handled in php, and the possible values and whatnot is stored within the MySQL database via php. What's the best way of obtaining the listbox values as well as the textbox values, and if your answer is JS, how do I create multiple selects in JS?</p> http://stackoverflow.com/questions/478129/rotating-images-ajax-like-in-ruby-on-rails 0 Rotating images, AJAX-like, in Ruby on Rails Chris Stewart 2009-01-25T19:41:58Z 2009-11-27T21:43:56Z <p>I'm working on a site where I'd like to cycle images, similar to a slideshow, while the user is on the page. I've searched around and haven't been able to find a lead. </p> <p>Has anyone done this with Rails and the Javascript frameworks it supports?</p> http://stackoverflow.com/questions/1810330/how-can-i-get-around-the-same-origin-policy 1 How can i get around the same origin policy? Jcubed 2009-11-27T19:30:00Z 2009-11-27T19:57:24Z <p>I need to use AJAX to get the content of another page located on a different server from the one the AJAX is loaded from. The AJAX needs to send a POST request then return the result. how can i do this?</p> http://stackoverflow.com/questions/1810240/ajax-request-status-returns-0 0 AJAX request status returns 0 Jcubed 2009-11-27T18:58:39Z 2009-11-27T19:16:08Z <p>when i make a AJAX request with this code, it returns the status as 0. what did i do wrong? Also, this code is only designed to work in Firefox for various reasons.</p> <pre><code>var ajax; function connectToOtherServer(server,port,userid,password){ ajax=new XMLHttpRequest(); ajax.onreadystatechange=validateConnection; params='userid='+encodeURIComponent(userid)+'&amp;password='+encodeURIComponent(password); alert('http://'+server+':'+port+'/ok.txt'); ajax.open('POST','http://'+server+':'+port+'/ok.txt',true); ajax.setRequestHeader("Content-type","application/x-www-form-urlencoded"); ajax.setRequestHeader("Content-length",params.length); ajax.setRequestHeader("Connection","close"); ajax.send(params); } function validateConnection(){ if(ajax.readyState===4){ if(ajax.status===200){ alert(ajax.responseText); }else{ alert(ajax.status); } } } </code></pre> http://stackoverflow.com/questions/1809931/simulating-a-synchronous-xmlhttprequest 0 simulating a synchronous XmlHttpRequest George Jempty 2009-11-27T17:42:22Z 2009-11-27T18:12:51Z <p>I've read some of the other related questions (<a href="http://stackoverflow.com/questions/214491/pattern-for-wrapping-an-asynchronous-javascript-function-to-make-it-synchronous">http://stackoverflow.com/questions/214491/pattern-for-wrapping-an-asynchronous-javascript-function-to-make-it-synchronous</a> &amp; <a href="http://stackoverflow.com/questions/518880/make-async-event-synchronous-in-javascript">http://stackoverflow.com/questions/518880/make-async-event-synchronous-in-javascript</a> &amp; there may be more), but I just want to be sure to exhaust all possibilities. </p> <p>Might it be possible to "convert" an asynchronous XmlHttpRequest into a quasi-synchronous one using either setInterval or setTimeout? </p> <p>The idea being that upon success of the Ajax request a variable will be set, which will be the signal for a while loop (that has called either setInterval or setTimeout, and a callback function as appropriate) to exit. Or am I fundamentally misunderstanding the abilities (or limitations?) of setInterval and/or setTimeout?</p> http://stackoverflow.com/questions/1800232/firefox-doesnt-execute-one-dynamically-loaded-script-element-until-another-is 0 Firefox doesn't execute one dynamically loaded <script> element until another is loaded Evgeny 2009-11-25T21:58:02Z 2009-11-27T15:43:04Z <p>I'm implementing Comet using the script tag long polling technique, based on <a href="http://www.olivepeak.com/blog/posts/read/implementing-script-tag-long-polling-for-comet-applications" rel="nofollow">this page</a>. Following on from my <a href="http://stackoverflow.com/questions/1794047/can-javascript-detect-when-the-user-stops-loading-the-document">previous question</a>, I've got it all working, except for one annoyance, which only happens in Firefox.</p> <p>On the initial page load my Comet client JavaScript sends two requests to the Comet server (in the form of dynamically generated <code>&lt;script&gt;</code> tags that are appended to the DOM):</p> <ol> <li><code>get_messages</code> - this is ongoing poll for messages from the application.</li> <li><code>initialise</code> - this is a once-off request at startup.</li> </ol> <p>These two happen at the same time - that is, the <code>&lt;script&gt;</code> tags for both of them exist in the DOM at the same. (I can see them in the Firebug DOM inspector.) The server immediately sends some script as a response to the <code>initialise</code> request, but it doesn't send anything for the <code>get_messages</code> request until there's actually a message, which may take a while.</p> <p>In Firefox 3.5 the script returned in the <code>&lt;script&gt;</code> tag for the <code>initialise</code> request does not get executed until the other <code>&lt;script&gt;</code> tag (for <code>get_messages</code>) also loads! In Chrome 3 and IE 8 this works fine - the script is executed as soon as it's received.</p> <p>Why does Firefox do this and how do I fix it? I suppose I could try to work around it on the server by sending a dummy "message" at the same time as the <code>initialise</code> response, but that's quite a hack. I'd like to understand and fix this properly, if possible.</p> http://stackoverflow.com/questions/1806691/populate-textbox-from-database-using-jquery-or-ajax 1 Populate TextBox from Database using JQuery or AJAX Zinoo 2009-11-27T04:17:42Z 2009-11-27T04:48:34Z <p>Hi, I have the following scenario: An SQL 2000 database with a table containing the columns UserID and UserName. A webpage with TextBox1 and TextBox2.</p> <p>I need to use JQuery, plain JavaScript or AJAX to accomplish the following: When I type the UserID in TextBox1 and press the Tab key, TextBox2 will populate with the corresponding UserName.</p> <p>I have this implementation in ASP.NET using C# and calling a web service, however I want to avoid postbacks when doing the table search and I know JavaScript or AJAX is the way to go.</p> <p>Thank you.</p> http://stackoverflow.com/questions/1805217/how-to-make-this-div-always-visible-to-users 0 how to make this "div" always visible to users jamal 2009-11-26T19:04:23Z 2009-11-27T01:24:23Z <p>On my site, I have an ajax call to my server that checks if a certain logged in user has a new message from the database.This ajax script checks the database every certain seconds.And if he/she has a new message, I execute this javascript to create a "div" to display to the user.Here is the javascript: <pre><code> function shownotice(b) { divnotice = document.createElement("div"); var a = document.createElement("a"); a.onclick = this.close; a.href = "#"; a.setAttribute("Id", "close"); a.className = "close"; a.appendChild(document.createTextNode("close")); divnotice.appendChild(a); divnotice.className = "notifier"; divnotice.setAttribute("Id", "divnotice"); divnotice.setAttribute("align", "center"); document.body.appendChild(divnotice); divnotice.style.top = document.body.scrollTop + "px"; divnotice.style.left = document.body.scrollLeft + "px"; divnotice.style.display = "block"; createframe(divnotice); } </pre></code></p> <p>And my css for this div: <pre><code> div.notifier { padding:10px; position:absolute; display:none; top:0px; left:0px; height:auto; width:auto; background-color:white; border:1px solid black } </pre></code> My question is that how can I make this "div" always visible to the user even he/she scrolls down.Like for example a user is viewing the bottom of the page, he/she can't see the "div".In other words I would like the "div" to be visible to the user no matter where is his/her scrolling position.</p> http://stackoverflow.com/questions/1750763/wait-for-ajax-response-inside-a-loop 0 wait for ajax response inside a loop George Jempty 2009-11-17T18:17:34Z 2009-11-27T00:34:24Z <p>I need to wait for an ajax response inside a for loop. If I could I'd simply make a synchronous call instead of asynchronous, but I don't have that level of control: I'm using somebody else's API which in turn calls eBay's Javascript API.</p> <p>Below are my two functions, actually methods on the same closure/object, with categoryStack and categoryMap in scope for each. In essence I'm trying to recursively build up a map, though I want to use a stack for management, rather than true recursion.</p> <p>I've tried a few variations on setInterval/setTimeout but I always get one of two results: one iteration of the loop, or an endless loop. Note that m_eBay.getChildCategories specifies the second of the two functions below as a callback, and I have confirmed that I am getting there successfully.</p> <pre><code>function getChildCategories() { categoryStack.push(-1); while (categoryStack.length &gt; 0) { catId = categoryStack.pop(); m_eBay.getChildCategories({ 'success':getChildCategoriesSuccess, 'failure':getChildCategoriesFailure}, {'siteid':0, 'CategoryID':catId, 'IncludeSelector':'ChildCategories'} ); /* use response from getChildCategoriesSuccess to reset categoryStack */ } } function getChildCategoriesSuccess(data){ if (data.categoryCount &gt; 0) { var categoryObjs = data.categoryArray.category; for (var i=0, n=categoryObjs.length; i&lt;n; i++) { var catObj = categoryObjs[i]; if (catObj.categoryID != -1) { //skip root categoryStack.push(catObj.categoryID); categoryMap[catObj.categoryName] = catObj.categoryID; } } } } </code></pre> http://stackoverflow.com/questions/1805765/how-do-i-use-cookies-to-store-complex-information-and-subsequently-dynamically-tr 0 How do I use cookies to store complex information and subsequently dynamically trigger an action based on the data? humble_coder 2009-11-26T21:36:19Z 2009-11-26T21:44:32Z <p>Hi All,</p> <p>I have a simple (yet somehow convoluted) issue. Basically I'm adding items to make my web app more "desktop-like". For instance, right now I'm trying to get a page to dynamically load info into a DIV based on previously selected items. I'm currently using a cookie to handle saving the data, but I can't for the life of me get my brain to work this problem out.</p> <p>I have a scenario with the following relationships:</p> <p>SITE has_many BUILDINGS</p> <p>BUILDING has_many METERS</p> <p>METER</p> <p>All entities can have associated charts. So, in an effort to make it generic, I set up a "has_many" relationship for each to CHARTS and abstracted it like so.</p> <p>SITE has_many CHARTS, as chartable</p> <p>BUILDING has_many CHARTS, as chartable</p> <p>METER has_many CHARTS, as chartable</p> <p>Once the user selects an item from the menu on the left, I then use a method to determine what item needs charts found and I display the particular item's charts. That all works fine.</p> <p>My issue now is working with cookies in order to either save data to independent keys (or perhaps Marshal objects) in order to dynamically reload the previously selected item's data whenever the page reloads. The ajax call requires several values in order for the "update" action to find the correct item and display it. I'm having trouble with whether to use Javascript directly, try to trigger an action, or use some kind of combination.</p> <p>As I said, I'm sure the issue is rather simple or straightforward, but I'm just not seeing it. If this description is a bit vague, I do apologize. Feel free to ask for more info.</p> <p>Best</p> http://stackoverflow.com/questions/1680459/problem-with-jquery-ajax-in-opera-and-google-chrome 0 Problem with jquery ajax in Opera and Google Chrome A. M. 2009-11-05T13:09:40Z 2009-11-26T20:39:46Z <p>I have a page where I need to add a drag and drop functionality to certain elements. When the drop event occurs, it makes an ajax call to a php function and then refreshes the contents of a div. I'm using jQuery with jQueryUI for the drag and drop, and CakePHP as a PHP framework (not sure if this is relevant).</p> <p>Everything is working just fine in Firefox, Safari and even IE, but in Opera or Chrome the contents of the div isn't refreshed (although the action from the PHP function is executed).</p> <p>So, here is the code:</p> <pre><code>jQuery('#lists div'). filter(function() {return this.id.match(/item[\d]+_[\d]+/);}). each(function() { jQuery(this).draggable( {axis: 'y'}); }); jQuery('#lists div'). filter(function() { return this.id.match(/list[\d]+/);}). each(function() { jQuery(this).droppable({ drop: function(event, ui) { dropID = jQuery(event.target).attr('id'); dragID = jQuery(ui.draggable).attr('id'); itemID = dragID.substr(dragID.lastIndexOf('_') + 1); oldListID = dragID.substr(4).replace(/_[\d]+/g, ''); newListID = drop.substr(4); jQuery.ajax({ url: "/lists/itemToList/"+itemID+"/"+oldListID+ "/"+newListID, type: "POST", success: function (data) { jQuery('#lists').html(data);} }); } }); }); </code></pre> <p>Basically, the success function isn't executed, but if I try to see the errorThrown (on the error event) it is "undefined"</p> http://stackoverflow.com/questions/1804397/window-location-hash-at-safari-4-0-4-doesnt-increase-the-history-length 0 window.location.hash at Safari 4.0.4 doesn't increase the history.length Tamir 2009-11-26T15:40:55Z 2009-11-26T15:50:32Z <p>I have a javascript error at the Safari 4.0.4 browser. I'm using AJAX navigation for the browser, in order to navigate between the result of my AJAX request, but the problem is that sometimes (i couldn't found the exact reasone) the history.lenght stays at the same count, instead of increase its value.</p> <p>Thanx :-)</p> http://stackoverflow.com/questions/1802540/apparent-memory-leak-in-web-application-maybe-from-ajax 1 Apparent memory leak in web application (maybe from AJAX?) Gausie 2009-11-26T09:20:59Z 2009-11-26T09:57:59Z <p>Hi all</p> <p>I'm running an AJAX request from a JavaScript-powered (+jQuery) webpage every 5 seconds for a set of JSON data. I left my application on overnight, and by morning my computer had completely frozen. I narrowed it down to my web browser and now, using Google Chrome's Resource Tracker, I can see that each request contributes a new memory expenditure, and the old JSON lingers.</p> <p>As the source JSON is constantly changing, I call it with the timestamp as a parameter, to avoid caching... I realise caching would solve this problem, but it would also make my data invalid. </p> <p>Any ideas? I'm overwriting the previous variable, so I don't see why the previous data should be retained. The memory increases don't happen at the same interval at the AJAX requests, so maybe its something else. I'd be happy to send someone the code privately, if it would help.</p> <p>Thanks all :-)</p> <p>Gausie</p> http://stackoverflow.com/questions/1800585/loading-script-tags-via-ajax 0 Loading script tags via AJAX BahaiResearch.com 2009-11-25T23:11:18Z 2009-11-26T05:36:40Z <p>I have a div tag which is filled with script via an ajax call, but the script does not execute.</p> <p>Is there a way to cause the script to execute?</p> http://stackoverflow.com/questions/462934/selenium-or-watir-for-javascript-testing-in-rails 5 Selenium or Watir for Javascript Testing in Rails Abie 2009-01-20T20:20:19Z 2009-11-26T04:25:00Z <p>We're using RSpec and Cucumber in our Rails apps with good results. Webrat is great for non-AJAX interactions, but we're getting ready to get back into writing tests for our Javascript.</p> <p>Webrat has Selenium support built in, and we've used Selenium before, but I'm curious if anyone has had good results using Watir with Cucumber and what the pros and cons are of Watir versus Selenium.</p> http://stackoverflow.com/questions/1799912/when-not-to-use-ajax-in-web-application-development 4 When NOT to use AJAX in web application development? Andrew 2009-11-25T21:00:55Z 2009-11-26T00:59:50Z <p>I'm building a web application with the Zend Framework. I have wanted to include some AJAX type forms and modal boxes, but I also want my application to be as accessible as possible. I want my application to be enhanced by AJAX, but also fully functional without AJAX.</p> <p>So as a general guideline...when should I not use AJAX? I mean, should I bother making my application usable without AJAX? Or does everyone have AJAX enabled browsers these days?</p> http://stackoverflow.com/questions/1797352/how-to-make-two-level-chained-select-boxdrop-down-list-in-phpmysql 0 how to make two-level chained select box(drop down list) in php+mysql garcon1986 2009-11-25T14:41:59Z 2009-11-25T16:19:33Z <p>Hello,</p> <p>I can manage to get values from mysql using select box in php, but i can't make it with two-level chained select box.</p> <p>Anyone have some example code or idea for that? </p> <p>Thanks. </p>