0
votes
1answer
48 views

How to convert existing html to ajax without affecting the html dom level?

First of all, I apologies to my poor English. I am trying to update a html page. I want to reduce the content in the html file and import the content in run time through ajax (using jQuery). The ...
0
votes
1answer
43 views

Find matching element in HTML string

Let's say I have a HTMLElement object (this), and a big string that contains HTML. The string comes from an ajax request. How can I find this inside that HTML string, without knowing the class or ID ...
0
votes
0answers
33 views

jQuery UI Slider being re-created when AJAX is called

I am having a strange issue (I may just be unclear how jQuery UI Slider is supposed to work). I have the following: //$.ajax is being called inside of button click $.ajax({ type : "POST", ...
0
votes
2answers
57 views

AJAX update delete tr in table : backend works but glitch with frontend

The purpose of the script below is to allow users to post new updates and to delete them without the page refreshing : that's why i'm using AJAX. There are 2 glitches: when a user posts an update, ...
3
votes
1answer
46 views

Textarea not working with jQuery live keyup function

I'm trying to build a tag friend system for a personal project. I've found some great tutorials online but right now i'm stuck. Nothing happens when i type in @ in the tagbox. Display and msgbox ...
-5
votes
0answers
42 views

Why is this object called a DOM? [closed]

I'm following a tutorial that explains how to write AJAX to make an asynchronous request to update a restaurant list displayed in a table on my MVC4 home page. During the video tutorial section for ...
0
votes
3answers
52 views

adding text using ajax call from json string

I'm a bit new to ajax and my javascript isn't to shabby I'm having a difficult time figuring this out. I'm trying to add values from a JSON string located on a separate url to my html code through an ...
0
votes
0answers
30 views

Change jQuery object property

I have this jQuery Object: The object called by $('#demoForm').data(); method and inspected by DOM tab of Firebug. How do i change highlighted property value? and what the name of topic related to ...
2
votes
4answers
62 views

Ajax loader is not showing up in chrome

I am using an ajax loader (like a please-wait .gif image) image for the ajax calls. Before some days it was working perfectly and showing in chrome. I didn't see any problem with the image or we ...
1
vote
1answer
19 views

What is the proper way to fire two scripts: one that loads data & another that manipulates styling?

I'm running a website that dynamically loads a new headline at refresh using Javascript. I should mention, my site is extremely tiny so I'm purposefully avoiding using jQuery or any other JS ...
0
votes
0answers
34 views

reloading a page with newly-appended data

On a site I'm working on, I have an administrator panel that allows admins to add list items to existing unordered lists. This is done using an AJAX form with jQuery's .append(). The list items are ...
8
votes
5answers
638 views

Can't find element in DOM after loading it with ajax (want to bind jquery plug in to it)

So I have 2 html pages. 1 that functions as container and 1 that functions as content. When I load the content page with a table I'm able to use drag and drop. But when I go to my container page and ...
-3
votes
1answer
69 views

Javascript login, cookies [closed]

can anyone help me with my homework please? <div id="header"> <form id="login" onsubmit="return member()"> <p> <label for="txtuser">User:</label> ...
1
vote
0answers
14 views

javascript PeriodicalExecuter crashing into user's submit (POST)?

When I look at logs with the Charles proxy, I see that the user's submit (POST) doesn't always contain all the form data. Sometimes it is missing the bottom third of the form data, apparently when the ...
0
votes
1answer
43 views

jquery append not showing in safari

I have a working progress bar inside a Django app. Except in Safari the bar shows up only under weird circumstances. First, I have the progress bar appended via jquery/ajax combination: var ...
2
votes
1answer
50 views

Knockout: Scrolling to one of newly inserted elements

So I have an asynchronous call to a controller in c# to obtain say 100 objects. After this is done I load it into my html page and through a parameter in the link I intend to scroll to it. So for ...
1
vote
1answer
123 views

Javascript does not work without alert()

I have a Javascript function that works well until I comment out/or delete the alert() line. It calculates the sum of up to 30 fields if they exist and if they have a value. HTML: <input ...
4
votes
3answers
119 views

jQuery complete replace DOM of element with another DOM - faster way?

I'm using jQuery's AJAX for getting new content from server. Data is loaded in JSON: $.ajax({ url: url, data: { 'ajax': '1', }, dataType: 'json', success: somefunction }); ...
0
votes
1answer
49 views

InsertBefore() is not working with javascript ajax

data is responseXML from ajax request which returns <b>Test Text</b> data is XMLDocument object streamObj is DOM node of html page. streamObj.insertBefore(data,streamObj.firstChild); ...
0
votes
5answers
32 views

jquery how to access events on html that was inserted to the DOM

In my web app I have an unordered list of 15 items that appear on load. I am grabbing 100 new items from an API using ajax and adding them to the current ul by using .append(html). Each li has a ...
0
votes
1answer
68 views

Add onclick event to SVG element

I found this example in a SVG tutorial, that explains how you can use an onclick event handler for a svg element. It looks like the code below: <svg xmlns='http://www.w3.org/2000/svg' ...
0
votes
2answers
49 views

Pulling value from rows, using Ajax and PHP

I created this small script, from what I have learned about Ajax + Javascript so far. I am running this in Chrome btw, so XMLHttpRequest(); should be working PHP, $conn = new ...
1
vote
4answers
77 views

Dynamically and Permanently Adding an Element to Your Page - Javascript/jQuery

I'm working on a website project from scratch. The content section of the main page has a form and a div of class "blog". When the user is logged in on the admin account, the form shows up. This ...
0
votes
1answer
35 views

why isn't my AJAX load() working in this code?

I have a script that loads an ul from an html page to a div on another page. It is meant to be my navigation menu, but it won't load. The ul has an id name and I'm using the id to load the ul and not ...
0
votes
3answers
81 views

having trouble to loading javascript inside ajax

I am developing website and I need to change page with ajax. Every single page has different javascript and css. I am doing something wrong with calling javascript when ajax content load. Addition I ...
0
votes
1answer
42 views

Updating element in webpage from php echo [closed]

i'm building a system that will auto update itself if needed, most of the app runs just fine but there is one section that i can't get working and it's when i want to update the element, now i know ...
0
votes
3answers
208 views

Coldfusion Populate form with dropdown selection using ajax

So I have a project that's using ColdFusion and it has a form with a dropdown. See example: http://jsfiddle.net/mwoods98/KXmNK/ What I need to happen once the dropdown is selected, is for an ajax ...
0
votes
4answers
132 views

jQuery access element not yet loaded in DOM

How do I write a click event that acts on an element not yet loaded into the DOM? Scenario: native-btn is a div loaded at document ready. ajax-loaded-element is a div that appears after an ajax ...
1
vote
0answers
34 views

Underscore extension with DOM/AJAX

I want to replace jQuery in my life with underscore, which of course has no DOM/AJAX etc... I am planning to include sizzle, and some DOM and AJAX library - but before I do, is there already ...
0
votes
0answers
220 views

Sencha Touch - getting value from number field

I've just gotten started using the Sencha Touch 2 framework, and am having some difficulty in replicating form behaviour across devices. I have a simple search bar, where a user enters a value (all ...
0
votes
0answers
66 views

Safari: AJAX load + DOM manipulation + scroll in the same moment are impossible?

I'm developing a small web-app with infinite scroll. And I meet strange problem with Safari. Trying to achieve the next: we have 3 blocks on the page. As we scrolling page down and middle point of ...
0
votes
1answer
104 views

Javascript not working on content appended via ajax on scroll

I have been working on adding more content to a page as the scroll reaches end of page. The problem is that javascript is not working on the content loaded via ajax Below is a simple code: HTML: ...
0
votes
0answers
131 views

jQuery marquee wait for function return

I am using this jQuery marquee plugin: http://remysharp.com/2008/09/10/the-silky-smooth-marquee/ The purpose of this marquee is showing the current song that's playing. I've a javascript ajax ...
2
votes
1answer
55 views

Best way to use .on() into a jquery plugin?

I would like to create a jquery plugin for my website. I will create events, and I would like to know what is the best way to deal with handlers. My worries are that when the DOM html change due to ...
0
votes
0answers
46 views

Scroll to top of page javascript kindle

I have an ajax function that shows actively changing content on my kindle paperwhite, I'm trying to find a way to make the page scroll to the top whenever the content changes. window.scrollTo(0,0); ...
0
votes
1answer
102 views

Appending to DOM

I'm trying to append, in one way or another, results from an ajax post in a commenting system. I've tried many different ways but they all seem to fail in one way or another. The HTML for the ...
0
votes
1answer
47 views

Is there a way to change a global variable on the document in the call back xmlHttpReq.onreadystatechange?

I am pretty new to the AJAX thing, but now I want to set some value to a global variable on the document based on status changed in the call back function xmlHttpReq.onreadystatechange, I used ...
1
vote
0answers
88 views

On ajax:success alter a different DOM element

On a page I have two areas: a list of tasks, and a task form. On ajax submission of the form and successful return I desire to call and reload the task list via another ajax call. That part works. ...
0
votes
1answer
71 views

jquery, cannot select a TR after DOM manipulation

I hope somebody can help me here as I cannot figure this out. I have a table showing usernames. When I click a TR line it fetches the information by an ajax request to a PHP page that gets the ...
0
votes
6answers
87 views

Writing PHP output into textfield

I've tried looking around for the answer to this but I can't seem to find it. I have a database which takes in two pieces of information and returns it either as successful or unsuccessful. I would ...
5
votes
5answers
75 views

jquery - get text of html return

This is probably simple but i can't seem to find my answer... i have an ajax call that returns html dataType: "html" and it's returned 'msg' looks like: <div ...
0
votes
2answers
43 views

Query nested JSON objects

I'm brand new to javascript and json and can't find any examples that explain how to get nested json objects. This works great: var someJson={"name":"spuder"}; alert(someJson.name); //alert shows ...
-2
votes
1answer
78 views

Javascript accessing PHP info [closed]

I want to have modal windows produced by Javascript for a calendar program, acting sort of like tooltips (wave your mouse pointer over an event link, and you get a modal popup describing the event). ...
0
votes
1answer
55 views

AJAX returned data - how to treat them with jQuery

So when jQuery makes an $.ajax request, the returned data can be handled with the success function attribute (a function) of the object passed as a parameters to $.ajax. As the API docs report, if the ...
0
votes
1answer
108 views

Highcharts Speedometer javascript will not run onload

I've been working with Highcharts speedometer. I've set it up to check if the server is up, if so display a random number in the speedometer. If the server is down, display 0 in the speedometer. ...
0
votes
0answers
163 views

xmlhttp.responseText not outputting to innerHTML

I'm trying to familiarize myself with Ajax as I will need to use it continually for work. I'm working through the W3Schools tutorial trying things with my Apache2 server. I have a file called ...
0
votes
2answers
45 views

Retrieving DOM values after AJAX call

I want to check some DOM values from Perl (I don't want to use browser and debugger manually). These DOM values are loaded after an AJAX call, and the sample function for one of these values would ...
0
votes
2answers
150 views

jQuery: clear recursive setTimeout when element is removed

I am attempting to retrieve info from the server through recursive $.ajax() calls, but want to shut those calls off when the element they are bound to is removed. function check_for_update($element) ...
1
vote
1answer
168 views

Return values from jquery dialog loaded via ajax

I'm hoping for some insight into something which WAS working, now isn't and I can't understand why. This is using asp.net in VB and jquery. I have a page on which I have an appointment selection ...
0
votes
1answer
68 views

How do I make sure dynamically generated div is loaded into DOM before js function is called on it?

I'm submitting a form with ajax and opening a Colorbox with the response data: $("#submitB").click(function () { $.post("/previewproposal", $("#proposal-form").serialize(), ...

1 2 3 4 5 9