ajax

ASP.NET MVC Inline Edit

I am building an MVC 2 web app, where I want to display information about something (the parent) as well as child details which are displayed as rows (children have a many to one relationship to the parent). I have implemented AJAX in MVC before using Ajax.BeginForm and partial views Using this method - with minor changes for MVC 2 rel...

using slick upload with mvc 2 and jquery / ajax

Hello Everyone! i'm trying to get slick upload working inside a jquery ui dialog. I've got it uploading the file just fine, and i've checked out the samples, and they all end up with the entire page re-loading. i've managed to make it so it doesn't do it's final postback to deal with the files after it uploads by setting the AutoPost...

How do I load content from a blogger blog with jquery?

I want to get individual posts from a blogger blog, and make them into individual classes and add their content to my website. I need to do this because the hardware that I'm hosting my website on has very little processing power (pentium 3), and very little ram (512 mb), and if I were to just put a wordpress blog on it, response time wo...

AJAX form is not passing through params[:id]

I'm using a simple ajax toggle partial in a view, to allow a user to toggle a message as read vs. unread. When I toggle I get a failure. MessagesController#show could not find MessageCopy without an ID. Application trace: messages_controller.rb:21 in 'show' (first line of the action) show.html.erb <%= render :partial => "read_unread_...

jQuery search results ... hover and click no longer working?

So I created a couple of functions for my search autocomplete results (custom autocomplete) and while the results were static, the hover and click events worked fine... but now that the results are dynamically being generated, my divs no longer respond to their hover and click events. Is jQuery not seeing the divs anymore because they'...

<a4j:commandLink> Not Rerendering

I'm trying to display a shopping cart in my application (Seam/RichFaces), and have included a "remove from cart" <a4j:commandLink /> next to each item to remove the item from the cart. When I click the link it is supposed to rerender the cart contents to show that the item has been removed. However, when I click the link, nothing happe...

Alternatives to database in Ajax

I am new to Ajax programming and I have been told that there are alternatives to using a database in Ajax if optimal speed is required. If there are going to be like a hundred requests per second then using a database does not make much sense. So what are those alternatives? I need only "native" AJAX solutions. No libraries, please. La...

How do I fetch another websites info from a URL like Digg's submit button?

I'm creating a website using the cakePHP framework and I and a newbie to php and web programming. I want to do something similar to Digg's submit button, where you type a url and it fetches an image, title and sometimes a short description of the article on the webpage. I'm assuming this would be done using php but I'm open to any meth...

ajax call error for list view data item.

function manageVoting() { var parameter; var myVoting; var divVoting; var divVotes; var value = -1; var parameterData; $('div.votemaincontainer').each(function() { parameter = $(this).find('#[id$=hfUrl]').val(); myVoting = parseInt($(this).find('#[id$=hfMyVote]').val()); divVoting = $(t...

AjaxFileUpload SyntaxError: missing } in XML expression

I'm trying to upload a file using $.ajaxFileUpload. My server script is returning a json object eg. {"imgName": "test.jpg", "imgUrl": "/uploadtest/images/profile/sam.jpg"} When I check in firefox it shows the correct response. Json is also received. But still I'm getting an error in alert: SyntaxError: missing } in XML expression I...

Google Crwaling AJAX Application

Hi , In my site , I added lot of AJAX function , For (dynamic pages ) , I read the below thread, i understand GOOGLE AJAX Crawler Procedure, Just am confirming , In applications am not used the links, i am using DIV, in that DIV onclick i called the ajax function , in that ajax code there is a URL , in this URL i appended...

using dynamic usemap in a4j:mediaOutput for jfreechart implimentation

i am generating pie chart using jfreechart and integrated the same to rich faces using a4j:mediaOutput , can any one advice , if i can have the tool tip enabled for the same. has anyone implemented drilldown charts with these two tech together? ...

problem in lightbox for video ?

i am using a thick box for flv player, when we click on the link for video (these videos list coming via AJAX), large size of videos are not playing, i think it is buffered, how can play the large videos? i am using flv player downloaded from www.adobe.com. ...

jquery .html() not displaying in ie works fine in firefox

Hi again! I have a what i would call a stange problem, though its to do with internet explorer (7 8 in both normal and compatability modes) so is not that strange to have a problem!! I have created a page break system. there are buttons on the page [previous] [next] [show all] / [show as pages] when the buttons are clicked it uses an ...

new XMLHttpRequest cannot run on Firefox

The script below work perfectly in IE for the XML respond. But seems i cant figured out how to run on Firefox or Chorme. Try few modification but still not able to run it. Kindly need assistant. <script type="text/javascript" language="javascript"> var xmlhttp; var timeStamp; var currentTime = new Date() var month = currentTime.getMo...

Comet, long polling with jquery tutorial

I am looking to add comet long polling functionality to my site by using ajax and jquery as I am not familiar with the javascript prototype framework. However, when I search for this, I always seem to end up with tutorial which use the prototype framework. Does anyone know of any comprehensive tutorial for comet long polling based on j...

Increment in AJAX MultiHandleSliderExtender is not incrementing properly

I am creating an interface which allows the user to select different time ranges from a time line indicating hours from 0 to 24. Therefore i have created a ajax MultiHandleExtender and assign different properties to it as shown below: <form id="form1" runat="server"> <div> <asp:ToolkitScriptManager ID="toolkitScriptManager" runat="s...

Show hyperlink and popup window when Mouseover on image in Ajax Enable Page ?

Hello, I am using this solution for "Show hyperlink and popup window when Mouseover on image". Its working nicely but Its not working when Ajax is Enable on page. How can I do this workable in Ajax enable page? ...

Android: Intercept AJAX call from WebView

Hi all, I want a HTML/javascript application, running in a WebView, to make AJAX calls that are handled by the Java code. Ideal would be to just intercept the call (easy, just use shouldOverrideUrlLoading()) and 'return' some data. However, I don't find a way to 'return' a response to the WebView, other than calling a javascript functio...

Repopulating select after ajax request

I have a select which allows the user to select multiple option. Also on the same page is a form that will allow the user to add new keywords which will appear in the select. My javascript sends an ajax request to a php script which either returns a success or error message which then gets added to the dom. The ajax part of the script ...