Honestly, I'm not even sure the best way to go about this, but essentially, I have a function in an include file that takes a $type parameter and then will retrieve/print results from my db based on the $type passed into it... What I'm trying to do is have a series of links on a page that, when you click on a certain link, will run the ...
I am trying to create a dynamic system with check boxes for an web based game that I am trying to make using Ajax, PHP and MYsql
Is there a possible way to detect whenever a checkbox is selected/unselected, pull up information from the database and display information based on user's selection dynamically on the website without refresh...
Ok, a great example of what I am trying to achieve is at Google Translate. The URL: http://translate.google.com/#en|es|this is what I am trying to do makes a GET request using this URL: http://translate.google.com/translate_a/t?client=t&text=this%20is%20what%20I%20am%20trying%20to%20do&sl=en&tl=es&otf=1&pc=0
I'm not ...
At my institution, we have a small library with 150 books and 50
users. We would like to use a simple online management system that
displays the books, lets users search and enter when they get and
return a book. (There is no librarian, the books are just in an
otherwise empty room.)
I'm not familiar with modern web content management s...
I have a main page which contains a simple iframe. Iframe source = a php file.
The PHP have a link the user can click, but whenever clicked, the browser history increases.
I want the iframe to be independent, without affecting history.
Possible? I am not familiar with ajax btw.
PS: Its only 1 link in the iframe which can be clicked.
T...
Reader's digest version: What is the most efficient way of requesting an image from a server and placing it into the DOM using AJAX (or AJAI, perhaps? : ) )? Here's the long version:
Hello SO, I'm setting up a simple page that has a list of items, and when you click on one, it does the following:
Clear the modal dialog on the page (wh...
Hi,
I basically have a form that the users filled in, and in which it's also possible to attach files. It's really equivalent to gmail actually: the files are sent while you're still typing the information in the form, and when you click on the final submit button, it waits for the files to be all transferred and submit the final fields...
Hi,
I will try to explain my problem. I have 4 files index.html, event.js, start.js and form.php.
index.html
<head><script type="javascript/text" src="start.js></script></head>
<html>
<button id="bt" type="button">Click</button>
<div id="test"></div>
</html>
start.js
window.onload=init;
function init(){
document.getElementById("bt")...
is it possible to use Ajax and make the result as select list with Formtastic?
example:
semantic_form_for @user, :url => profile_path(@profile.id) do |f|
- f.inputs do
- f.input :province, :label => "Province", :as => :select, :collection => ["province-1", "province-2", "province-3"]
- f.input :city, :label => "City", :as => ...
Hi,
I am using motools script for client side validation of web form.
here is the link for that script http://mootools.floor.ch/en/demos/formcheck/
My problem is that when only form validation is used and form is subimitting with normal method is fine but when form validation is used and form is submitting using AJAX with motools. so...
I need to write a google gadget that reads feeds from google groups. Trouble is I'm making an ajax call to retrieve the feeds and our google apps domain is protected by CAS (central authentication service). So, I'm getting a 400 bad request on making the call.
I suspect that the browser is not sending the cookie when making ajax call.
H...
Hey y'all..
Is there a a quick way to validate SOAP messages? I have seen validator for JSON objects. Is there something like this for SOAP? I am recieveing a 'Bad Request: 400' error response with a AJAX post I am working on. I am not too familiar with SOAP as I typically just pass JSON. Can someone tell me what is wrong with my reques...
Hi,
I am using a Hovermenuextender to provide styles tooltips for a vertical list of items. Now, ehn the page if viewd in FF and IE the tooltips are displayed next to the control as expected. But in Chrome and Safari, when I scroll the page down, the tooltip positioning does not take thie scroll position into consideration, so I get t...
Hi All,
I am looking for someway to do Flash type movies but with AJAX instead? Flash requires plugins, SEO is difficult and my experience is people tend to stay away from Flash websites unless they are really really good.
Can any provide some insight?
Maybe something like this:
http://activeden.net/item/handdrawn-deeplinking-urban-...
Hi,
I use Eric martin's contact form modal popup in one of my personal projects. I wish to add file upload to it, however when I try to get the file, I'm able to view the file. I'm pretty much new with Jquery. I tried couple of AJAX Upload and uploadify, thats also didnt work. Please suggest me some solution to proceed. My Frontend is...
Hi,
I'm trying to create a dialog box in my ASP.NET application with an AJAX ActionLink.
The Ajax ActionLink inserts a partial view into a div in the current view.
I've called a function OnComplete (and I've tried OnSuccess, too) that calls the dialog function for JQuery UI, like so:
function() loaddialog {
$("ContainerwithInsertedPa...
Some of my controller actions need to respond with different ViewResults depending whether or not they were called by an AJAX request. Currently, I'm using the IsAjaxRequest() method to check for this. When this method is called during a unit test, it throws an ArgumentNullException because the HTTP context is missing.
Is there a way t...
hi all:
I used jquery's .ajax function like:
$.ajax({
type:"POST",
url:"./index.php",
data:{ajax_fetch:1,action:"fetch_devInfo",nwType:nw_type,devTSN:dev_tsn,devSTime:dev_sTime,devETime:dev_eTime,dev_gType:dev_graphType},
dataType:"xml",
error:errHandler,
success:function(xml,textStatus)
{
xml_process(xml,textStatus,$("div#cont-De...
I know a few sits (such as my bank and my school) that kill a session after their has been idle for a set amount of time. It is my understanding that session activity is determined by users following links or at the very least from some kind of active interaction, like updating a form via ajax. Basically the server gets a request to do s...
When a page is finished loading. Then I want to load a module other, smaller, inside it using jQuery. What should I do?
...