hi,
I have a login form. The form is submitted via ajax to an .aspx file to actually carry out the login action. In this case, I either have to use $.get() or $.post() but each of them reveals the password (when I look in firebug).
Is there any way to hide the posting information from the user?
...
I recently asked how to detect when all resources of a page have been loaded, such as images and stylesheets. The answer came back, use the $(window).load(); method in jQuery.
My question now is how do I detect when content is done loading via AJAX. AJAX injects some img elements, say, into the DOM... how can I tell when those images ha...
I have a DWR action with a method signature as follows:
String joinGroup(String groupId, String groupName);
This is called via a DWR AJAX request and works fine.
However, I am trying to write a Spring interceptor (works much like a ServletFilter) to do some authentication work before the DWR action is called.
The interceptor is being...
I'm currently working in an application that has to navigate a webpage and recollect data about products, prices, ... with webbrowser object in .net 3.5.
The problem is that the page has some fields with a suggest script in ajax, and I can't simply modify the innerText property because the script also saves codes in a hidden input field...
I'm trying to make an autocomplete textfield for my Rails app, following the Agile Web Development with Rails, 3rd Ed example. But if I simply paste their demo code in:
<%= stylesheet_link_tag 'autocomplete' %>
<h1>Editing user</h1>
<% form_tag :action => 'update', :id => @user do %>
<%= error_messages_for 'user' %>
<p>Username<br...
I have a Data Grid and an Update Panel. Now, I was just looking over some blogs and found that you should use the least amount of Update Panels as you can. In my case, where I have a Datagrid and an Update Panel, which would be the best situation?
1) Keep the Datagrid inside the Update Panel.
2) Use an Update Panel inside ItemTemplates...
I'm trying to get the sample code from Mozilla that consumes a REST web service to work under Firefox 3.0.10. The following code does NOT work in Firefox but does in IE 8!
Why is this not working?
Does IE 8 have support for XMLHttpRequest? Most examples I've seen use the ActiveX
allocation. What should I be doing? XMLHttpRequest...
I wanted to give my users a little piece of JavaScript or HTML code that they could put on their site and show information about them. Kind of like StackOverFlows new feature Flair.
I have an idea of how to code it. I was going to give them some JS with a HTML that had a DIV id="MySite_Info". Then the JS would go to my site and pull som...
We have two separate web-apps, say 'retailUI' and 'bulkUI'. These two are basically two separate web applications (within the same business domain). Now, the requirement has been given to us to make the two work together in one page with a Tabbed interface (as a PoC).
My problem is that both the applications span over a number of JSP pag...
A pleasant user experience requires a page to load very fast. This can be difficult when there is a large query taking place or when a web service is being used.
I deally, the entire page should be loaded first with loading images everywhere a cumbersome task takes place.
In ASP.NET, this can be accomplished using update panels and a 1...
Thanks for all the great answers, this helps a lot!
Hello, I need some advice/help (obviously)
I'm pretty new to jquery/ajax in general but I have been able to do quite a bit so far. Here is what I am TRYING to do and then what I have managed to do so far.
I am trying to emulate the wordpress post categories. Where you are writing ...
hello, ive seen some pages that offer new ajax animations.. can i use those in .NET?? if not, how do you create new ajax animations for .net?
...
Sometimes it seems that a request is frozen. How can I cancel it and call it again when it takes a long time?
Sometimes the latency is more than 10 minutes because the Ajax post checks the Twitter API, and Twitter API sometimes, you know! :)
...
I am using AJAX via jQuery, and I am trying to translate using the Google Translate Service.
The service does not seem to work for me.
What am I doing wrong? How would I go about using this in my web application?
...
I need to create a page that will load divs from an external page using Jquery and AJAX.
I have come across a few good tutorials, but they are all based on static content, my links and content are generated by PHP.
The main tutorial I am basing my code on is from:
http://yensdesign.com/2008/12/how-to-load-content-via-ajax-in-jquery/
T...
Hi,
We have been using google AJAX API loader (to get the location of a client based on her IP) as described here:
code.google.com/apis/ajax/documentation/#ClientLocation
Earlier when the API loader was included in any file
then
it used to populate the google.loader.ClientLocation property with data about the client
but two days back ...
I have a select box that should be populated only when clicked. The query involved takes a long time so I'm deattaching it from the standard data shown on the page.
I have implemented the function loadMyData(element, id) which does an ajax request and returns the data as JSON. Then it populates the select box.
the event is binded to t...
I have a bunch of Ajax requests that execute just fine, but I end up with a syntax error in my browser.
Can anyone see what's wrong with my request below?
function getName(refId)
{
var resp = '';
new Ajax.Request('/servlet/GetName',
{
method:'post',
parameters: {'requestType':'ref',
'value':refI...
Q1: Is there something like too much ajax??
Explanation:
I have been seeing programmers using Ajax/jQuery etc where I think its not even required. I had built a reporting tool for the company's senior management ( age group 55+) and had to refactor many pages and actually take out the ajaxy stuff from it. Are these things to be hand...
Hi there,
Can anyone help? I have an issue with calling a asp.net webservice from jquery.. actually i think it maybe jquery ... as i have a break point and it doesn't arrive in the webservice..
Here is my jquery, the webservice method accepts 2 parameters...
So i setup a simple test to pass in 7 and 7 .. i tried replacing with the wor...