I have one image what I want to is: change its x & y position on mouse move.
for example:
<div class="mover" id="1">
<IMG SRC="images/buttons1.png" WIDTH=129 HEIGHT=30 ALT="" border="0">
</div>
<div class="mover" id="2">
<IMG SRC="images/buttons2.png" WIDTH=129 HEIGHT=30 ALT="" border="0">
</div>
What I want to do is like no...
I'm having trouble with adding and then removing an AjaxSelfUpdatingTimerBehavior in Apache Wicket. The behaviour gets added okay but then as soon as I remove the behavior I get a "Page Expired" come up in the browser very soon, I guess because the removal wasn't clean. My set up is basically a label which starts changing by timer, and...
Are there any VS template/Starter Kit/Any example of an ASP.NET Web Application, which uses jQuery and WCF (JSon), without ASP.NET Web Forms or ASP.NET Ajax, and generates clean code?
jQuery and C# for Web. No Web Forms/MVC. Is it actually possible?
...
I am using YUI 3.0 io to submit form data with ajax. The form fields are created from a django view (ModelForm). The first time the form loads, I update a field and submit the form using YUI onclick which calls the io callback which runs the django view and returns the ModelForm again with the update data. This works once (saves to datab...
Hi,
Could anyone tell me why my $_SESSION variables are not being carried over to my other PHP page that is called with ajax.
All pages have session_start();
It works on my local machine, but when I upload it to my server, it doesn't work, and on refresh it takes me back to the login screen...
EDIT:
The session variables saved once...
I'm having some trouble to figure out how to make the "page load" architecture of a website.
The basic idea is, that I would use XSLT to present it but instead of doing it the classic way with the XSL tags I would do it with JavaScript. Each link link should therefore refer to a JavaScript function that would change the content and menu...
Hey!
I'm basically trying to get the existing code below to make a new ajax request every time it finishes so there would be a constant stream instead of it just stopping after a batch.
<script type="text/javascript">
$(document).ready(function(){
var twitterq = '';
function displayTweet(){
var i = 0;
var limit = $("#twitter-results >...
I have the following code
<div id=form>
<div id=viewimage>
<img src="placeholder.png">
</div>
<div id=upload>
<form action="upload.php" method=POST enctype="multipart/form-data">
<input type=file name=image>
<input type=submit value=Upload>
</form>
</div>
</div>
I need th...
I have a jQuery ajax function that loads some content into a div, some of the content is images. I would like to said until those images which where just loaded in my ajax, are finished loading, and THEN run a function, such as showing the content. This way, I won't have the content loaded into the div and the images start loading. I ...
Ok, I have spent a while on this problem and this is what I have gathered:
If you make an AJAX call in IE7 and you have a window.onbeforeunload function specified, it calls the onbeforeunload function.
If you try to open a new window with window.open WITHOUT disturbing the current window, the onbeforeunload gets called.
Does anyone k...
I read about the Ajax API here http://stackoverflow.com/questions/1539798/scraping-parsing-google-search-results-in-ruby
For some reason, I get completely different results from the same query when using the Ajax API than I do from normal search. Is there a simple explanation?
here are the two:
http://www.google.com/search?hl=en&rl...
The Background
I run an ASP.NET site using Graffiti CMS for a local charitable/service organization.
The leaders of the organization want to start integrating a third-party back-end management system that exposes content as full HTML pages.
One of the pages, the officer list, uses inline script to load pictures or placeholders (dependi...
Hello all! I am running into problems where I can't seem to display six list items within a ul that is nested within a div. The following is what I have so far:
$(function proName(){
$.getJSON("pros", function(data) {
/* Parse JSON objects */
jJSON["pro_name"] = (function() {
//response = {
//values: [],
//count: 0
//};...
I have a problem where sometimes the data payload in the AJAX code below is not sent to the server.
// loans_url, sample_id, sample defined above this block
$.ajax({
type: "POST",
url: loans_url,
data: {'loan[sample_id]':sample_id},
beforeSend: function() { sample.remove(); },
success: function(data) ...
Normally with an AJAX popup control extender, you simply select the item and your selection will populate the associated control.
However if I want to populate the control either directly or by a drop down list, then I would like to have a submit button and a cancel button.
I have found how to put in a Submit button. But how do I put in ...
Hi,
I would like to create a user interface like the iGoogle or facebook profiles where the end user can customize the layout. Move components around, resize e t c
Do you have any suggestions on resources/code examples in order to create something like that?
...
I want to call AJAX Request from one subdomain to other.
Say I want to request http://subdomain2.site.com/ajax/handler.ashx from a ASPX page on other subdomain http://subdomain1.site.com/Default.aspx
Any IDEA how to do this?
...
I want to be able to call a URL be either a standard HTTP GET, or an AJAX call.
The server needs to handle the request slightly differently based on whether the request was an AJAX request or not.
Using jQuery, I want to automatically add a parameter to all AJAX requests I make, so that the server can identify them, and without me havi...
Hi, how could I arrange the following div's by the value in the attribute amount with jquery? Thanks.
<a href="#" id="id1" class="lTest" amount="12">
<div>abcd1</div>
<a/>
<a href="#" id="id2" class="lTest" amount="64">
<div>abcd2</div>
<a/>
<a href="#" id="id3" class="lTest" amount="32">
<div>abcd3</div>
<a/>
<a href="#"...
Do anybody know any free Ajax-based Windowing toolkit for asp.net like Coolite Toolkit (which is a .net port of Ext-JS), and of course with extensive documentation?
Coolite Toolkit has an excellent library of Ajax controls. But lacks detailed documentation. So I am searching for a better option.
...