I've been researching this on and off for a number of months now, but I am incapable of finding clear direction.
My goal is to have a page which has a form on it and a graph on it. The form can be filled out and then sent to the CGI Python script (yeah, I'll move to WSGI or fast_cgi later, I'm starting simple!) I'd like the form to be ...
When a certain machine tries to access my website, all AJAX calls fail. This happens for all browers on this machine, and no firewall or anything of the sort seems to be enabled. What could be the issue here? Opera tells me that the AJAX calls are returning a SecurityException.
What could POSSIBLY be happening to cause this one machine ...
I have two collapsable panel extenders on my aspx page. One collapsable panel extender has two textboxes abd a button and another collapsable panel extender has a repeater control which is databound. When I click on the button in the first collpasable panel extender another datalist control on my aspx page should be databound wit new dat...
ive got a forum. when i click on a thread it passes GET variables through URL to another php page that displays that thread.
url?threadid=10
and ive got a reply form in the bottom. when the user click submit reply it will execute jquery that call a php through ajax. i have to pass the threadid variable to the ajaxcalled php file but ...
I cant not figure out why this script doesnt work. It has to do with something within the AJAX POST script/function. Right now, when I hit submit on my form it runs the php code on the same page. What it should do it is send the values of the form to project_ajax.php, then at page will return a var of success that will be true or false.
...
i use jquery ajax to get data from php file.
data = <option>Peter</option><option>Maria</option>
i want to then use jquery to put this data after the first option
<select>
<option>Name</option>
</select>
i cant use html() on select because then the first option will be deleted. what jquery function can i use to put them after th...
I have a series of links, each with their own id:
<li><a id="about" href="#">About</a></li>
<li><a id="call-us" href="#">Contact us</a></li>
<li><a id="home" href="#">Head on home</a></li>
Instead of writing a series of statements like this:
$(document).ready(function(){
$("a.about").click(function(event){
$("#content").l...
I have a strange problem that I am unable to track down. I am using Codeigniter and Jquery to create an ajax search feature.
Everything is working well and the correct data is been returned from my model but when I load the view from the controller it has the header of the page in the response.
I have tried an empty view to load and st...
i use json_encode to send back data from php to jquery through ajax.
and i have noticed that jquery just allow us to use ONE echo in php.
if i use echo json_encode($array);.... and then one more echo json_encode($array2); in the same php file, then it would not work.
or if i use echo json_encode($array); and then another echo "hello";...
Hi,
I was discovering CollapsiblePanelExtender tutorial but then I found there is a better documentation in StackOverflow. Is there any documentation or even a book about AjaxControlToolkit that is up-to-date?
...
I am experimenting with long polling XMLHttp Requests (XHR) on this page. Having Avast antivirus installed I noticed that its web shield effectively blocks the use of readyStates<4. Adding an exception for text/xml mime types in the web shield configuration solves this. But is there a way to solve this programmatically? I searched the n...
hello,
since i switched computers i copied the solution and thought it was a nice time to change the ajaxtoolkit.dll with a new version. so i downloaded the latest version and added the reference. when i compile, there is nothing wrong in visual studio 2008. (it's a webapplication)
but when it runs i get a: there are multiple controls ...
I have a search form that show live results in a specified div (look at there http://stackoverflow.com/questions/1856982/filter-results-with-jquery)
I've modified the script a little bit and now when a user check one of the checkboxes the results div automatically refresh. The load function is handled by onChange event.
Is there a way ...
Hello,
I'm new to JQuery (and JavaScript/AJAX in general) and am encountering a problem with hiding elements.
When I use the code below the animation works and the element is hidden but as it is being hidden it is shifted onto a new line along with everything after it. This happens with horizontal hide as well but not with opacity.
Is...
Hello all,
I'm trying to create a fully modifiable data table with Jquery's Datatable plugin at the moment. By fully modifiable table i mean a user will be able to edit, remove, update, add columns on the table. Based on the examples, currently i am trying the following javascript code:
function var_dump(obj) {
if(typeof obj =...
I have a popup that gets fired when I hover over a link in an iframe embedded inside the main page.
Currently that popup is rendering on the iframe and gets clipped. I want the popup to display on the top and not in the frame.
...
Hello,
I am looking to build a one page website, that runs on PHP(obviously using codeigniter) and AJAX(supported by jquery), at the moment I have a menu that gets populated from the database, depening on what catergories are selected as being on line, the then build a an url using those results,
if(isset($main_menu)) {
foreac...
I need the ability to create up to N amount timers in JavaScript/Ajax that will count like a stopwatch(but have no buttons).
Another issue is that my data will be loaded via another Ajax request so the page will constantly be updating. I'm not sure how I would be able to keep a timer's correct value when that happens.
Thanks!
...
Now there's all the hype lately about Node.JS, an event driven framework using Javascript callbacks. To my limited understanding, its primary advantage seems to be that you don't have to wait step by step sequentially (for example, you can fetch the SQL results, while calling other functions too).
So my question is: how is this differen...
Hello,
I have a website where I am wanting to get some query results through AJAX and JSON, but I have absolutely no idea how to do it, I have this function,
public function category() {
$table = $this->uri->segment(2);
$content_id = $this->uri->segment(3);
$data['content'] = $this->site_model->get_content($tabl...