Hello
Would there be any problems calling an HTTPS page (e.g. a credit card authorisation service i.e. WorldPay) from a standard HTTP page via AJAX?
I can't imagine why there would be a problem, the response would be an HTML page which I could then embed in a result pane or such like?
...
hi,
My company has multiple vendors that all have their own websites. I am creating a website that acts as a dashboard where customers can access all of the vendor's sites. I wanted to know what is the best option for doing this?
Here's what I have so far:
Iframe
Can bring in the entire website
Seems secure enough (not sure if I'm ...
Hi, I've been having some weird issues when it comes to make an AJAX request and handling the response.
I am making an ajax call for an xml file. however when i get the response the xhr.responseText property works fine in firefox but not in IE.
Another thing is that I am trying to access the xhr.responseXML as XMLDocument, but it tells ...
I'm having a serious issue with Internet Explorer cachings results from a JQuery Ajax request.
I have header on my web page that get's updated everytime a users navigates to a new page. Once the page is loaded I do this
$.get("/game/getpuzzleinfo", null, function(data, status) {
var content = "<h1>Wikipedia Maze</h1>";
content ...
I would like to have a page that checks for updates to a database table and refreshes the grid using an Ajax call and when a new row is inserted into the table pop up a message window.
This database table gets updated with new rows every 15 minutes or so and the message window lets the user know that a new record has been added or possi...
I'm trying to add a table row with ajax/jquery that has a form element in it. Everything works just fine if I set it without the ajax, but somehow everything inside the <form> tag is just completely lost.
I'm not sure where I'm losing the form (jquery's .html() is effectively the same as innerHTML right? If that's the case I suspect t...
I manage a system for academic software projects which, as well as other things, allows projects to provide web pages integrated with an instance of the Trac bug tracker / wiki / source browser. The idea is that the users have freedom to design their main pages as they like (they really like that), but with some convenience/branding feat...
I am trying to use a form to send an prototype ajax request to a php script via post and then display an alert window for success and failure
I am currently using this code
<div id="reservationRequestForm">
<form name="requestReservationForm" method="post" onsubmit="new Ajax.Request('admin/process/process_reservation_request.php', {...
Hello everyone,
I am trying to get some data from the server via an AJAX call and then displaying the result using responseDiv.innerHTML. The data from the server comes partially encoded with Unicode elements, like: za\u010Dat test. By setting the innerHTML of the response div, this just displayed as is. That is, the Unicode is not conv...
I am writing a web based application using Ruby on Rails. In one of the forms the users would need to draw something with a mouse and label the object with some text. In short, I need a
Simple paint like application on which I can draw with a mouse.
Write simple text.
Store the painted diagram as a file for future editing.
Export...
An AJAX log-in plug-in for Wordpress, 'iredlof AJAX login', is rendering correctly in Safari and Firefox on my Mac, and in Safari, FF and Chrome on PC, but not in Internet Explorer. I know nothing about AJAX, Java, php and at a loss to even start to know where to look for an answer. The developer is not being helpful.
It's a new blog on...
I have a .NET web service.
It serves AJAX requests from web users.
I would simply like to know how to automatically get the user's timezone... Not current time offset, but the actual timezone - like, Central Standard Time is -5:00 right now, but Eastern Standard Time will be -5:00 once daylight savings is over. I want to differentia...
I using Ajax ModalPopupExtender but problem with this is menu in appication is display over the ModalPopupExtender. I also set z-index=1 for ModalPopupExtender and z-index=100 for but problem not solved.
...
I am working on a ASP.NET webpage that is rather complex with ajax, callbacks, javascript etc. I encounter this error intermittently:
Stop running this script? A script on this page is causing IE to run slowly...
Any help in finding the culprit is really appreciated.
...
Hi everyone,
I'm looking on the web, but documentation is hard to come by. We all know the basic AJAX call using the browser's built-in XMLHttpRequest object (assume a modern browser here):
var xmlHttp = new XMLHttpRequest(); // Assumes native object
xmlHttp.open("GET", "http://www.example.com", false);
xmlHttp.send("");...
I have this web service... It serves up HTML in response to an AJAX request, and the web service needs to be aware of:
the user's specific language
the user's timezone or location
I understand that this is currently quite infeasible. BUT...
It seems that HTML 5 will have a Geolocation API! Awesome. This should take care of my timez...
I'm using JQuery to make AJAX callbacks to asp.net page methods. All works well. However, when I click a hyperlink to go to a new page while a long running callback is in progress, target page doesn't respond normally. Seems like it's waiting for a callback to finish because target page responds in same amount of time it takes for a c...
Hi.. I wanted to implement a "live preview" of forum posts / comments / etc, kinda like stackoverflow.com does (when you ask a question, you see the preview below it in the div with the blue background).
What's the best way to do it? I would really want to avoid re-implementing my bbcode parser in java as it would be very complex. I was...
I have a page which needs to pull content from a database and potentially other sources.
This is how I've structured my ruby on rails application.
/Index - this has three different sections which needs to load in three different types of content. Each one will take different amount of time to return, as such I want to display a loading...
We are building an application that is very ajax-centric, and has very few full page reloads. However, we also want to embed context sensitive advertisements.
The question is, from a programmatic perspective, is there anything special that needs to be done for adsense to accurately work this way, or will it basically just report 1 visit...