ajax

Creating Xaml control in (aspx)web application.

Is it possible to create a .xaml (silverlight) control in a web application project? I have an aspx application wherein I am using ajax controls and updatepanel. I want to create some silverlight controls in the same project, and load it along with my other pages/controls. I am not sure if it is possible to create a silverlight control...

Permission denied to get property XMLDocument.readyState

Hello all, I keep getting this error everytime I make an AJAX (iFrame) request to upload a video to viddler. Permission denied to get property XMLDocument.readyState ajaxupload35.js (line 455) [Break on this error] if (doc.readyState && doc.readyState != 'complete'){ Line 455 to 460 is this: // fixing Opera 9.26 if (doc.readyS...

jQuery Syntax Help

Sorry for asking such a newbie question, I know it makes a few of you here angry. But I think learning the syntax is the hardest part so don't flame me too badly. Right, I'm using the Tabs widget from the jQuery UI. I'm stuck with setting the options for this. This is how it stands... <script type="text/javascript"> $(function() { ...

Popup blocked, jquery window.open in success: AJAX? outside ok.

Hi there, can anyone help, I have some jquery and chrome is blocking the popup i am creating, after some investigation it appears to be an issue with window.open in sucess event of an ajax call.. Is there a way round this? My jquery ajax call needs to return the URL i need to open :-) ... so i am bit stuck... If i place the open.windo...

cannot get post values send with ajaxcall

Hello, My problem is the folowing: I am trying to retrieve the postvalue, but whenever I put that statement in the php code the ajaxcall will fail. I cannot see what I am missing here?? $.ajax({ url: "includes/livetabs.php?actie=sessiegebruikersnaam", data: {gebruikersnaam: tbgebruikersnaam}, cache: false, ...

xmlhttprequest onlys gets to status 3

Hello everyone, I have a simple search form with a search box and a result box. When I type a search word a request is created like: http://www.site.com/php_handler.php?s=hello In the php script and a result is given back to the script this way: <?php return $s; ?> The problem is that my htmlrequest stops at readyState 3 it doesn'...

Umbraco v4 vs Cute AJAX Uploader Control

I have a custom user control that i use in a page in Umbraco CMS... since upgrading to version 4, it seems this user control wont work any longer. The user control contains an ajax uploader control (support request post here: http://cutesoft.net/forums/53732/ShowThread.aspx#53732), which allows users to upload images, then displays th...

IE7 and XMLfiles on file system

I'm loading a XML file via Ajax using jQuery. For my tests, I use a file on my file system. It seems all is fine in other browsers but the response headers got by IE has no content-type header. So I get a parsererror. (The XML is valid, I checked it (twice).) How can I bypass this problem ? ...

AJAXify site

Hello, I have legitimate reasons to do what I am trying to explain. I have an existing site say abc.com which has regular pages etc. everything written in php. Now I would like to AJAXify the site i.e. when a user clicks on a link, it should fetch the link using AJAX and replace the page contents. This is the easy part and I can achieve...

How to open a web page from QlikView?

I am starting to use QlikView. I need to open a web site from QlikView script, for instance something like call ("wwww.mywebsite.com"). Is possible to call a website from QlikView Script? ...

Long Polling on IIS

I developed a progress bar widget in CF and it works wonderfully on my local machine running on a built-in CF8 development server. However, our production and staging boxes are running Win2k3 and IIS which I can't get to respect the CFFLUSH tag. Even padding the buffer with responses doesn't work too well as it is rather unpredictable wh...

JQuery Issue with all browsers but IE 6.0/7.0 :)

Never thought I'd have this problem :) The following snippet of code works in IE 6.0/7.0 but none of the other browsers (well, IE 8.0 in "compatibility view"): $(document).ready(function(){ // Search button code $('#btnSearch').click(function() { //start function when button is clicked var sid = $('#search_id').val...

Rails Auth Token and Ajax

Okay so from what I've read on other websites and on stack overflow, Rails throws this Authentication token error because my form doesn't pass the token -- and it's a security feature. This I understand. However I don't really have a form. I have ajax here -- my javascript posts the id'ed information into a processing function. So my q...

Ajax AutoCompleteExtender with Master Pages

I used Ajax AutoCompleteExtender with MasterPage, I placed the SricptManager in MasterPage,It was not worked. Therefore next time placed SricptManager in Default.aspx page. It also was not worked. Masterpage was loaded. when click the link, next page was not loaded (loaded blank page) Then, i placed the SrciptManager in Default.aspx pag...

Why are iframes so slow?

Hello gurus, I have little bit longer question for you - but hope answer will be very simple :) Let's say I have very simple page with link and iframe (just for simple example). <body> <a href="test.html" target="mframe">open link></a> <iframe name="mframe" [params] /> </body> So when you click on the link it will load test....

Jquery not working in Ajax calls

I have been trying to make ajax calls with Jquery. When doing so,I miss out the Jquery corners and scroll functionality doesnt work. But the same functionality works fine without Ajax calls. Can anyone provide a solution to this. My application is in Ruby on Rails and my Ajax call in ROR is as follows. (link_to_remote "tabname",:url=>{...

PHP/MYSQL AJAX Chat

Looking for an open source php/mysql ajax chat room (not 1-to-1 private chat). What would you guys recommend? I am going to need to make hundreds of instances of the chat room (eg. each user group has their own exclusive chat room) ...

How to programatically access a password protected website?

Part of our website is protected with .htaccess style password protection. When you try to access this area of the website the web browser pops up a dialog asking for your username and password. I need to access this programatically (eg with an ajax call). How does the server tell me it needs a password and how do I supply it? ...

Need a ContentTemplate tag on my user control that is accessible like the ContentTemplate tab on the UpdatePanel

I'm creating a user control and I want to have a templated section on it called ContentTemplate similar to how the UpdatePanel has a ContentTemplate tag. When you use the UpdatePanel and you place controls inside of the ContentTemplate section you can access all of the controls in the ContentTemplate without having to do a FindControl() ...

How does one return data to the original caller function in Javascript?

I have a problem returning data back to the function I want it returned to. Code below: function ioServer(request_data, callback) { $.ajax({ cache: false, data: "request=" + request_data, dataType: "json", error: function(XMLHttpRequest, textStatus, errorThrown){}, success: function(response_d...