similar to: AJAX works in Safari, broken in Firefox

Displaying 20 results from an estimated 4000 matches similar to: "AJAX works in Safari, broken in Firefox"

2006 Jan 02
2
HTML Fragment not Loading in Firefox; Fine Elsewhere
Ok, this has got me going a bit crazy. I have an HTML fragment being returned for the result to an AJAX query. It works fine in Safari or from curl (and even in IE/Mac), but utterly fails to load in Firefox, even if I point directly to the URL, skipping all that AJAX stuff in between. (The server logs show a 200 response, regardless of which browser is being used.) I''ve verified
2006 Mar 13
0
Bug with Ajax.Autocompleter in Safari 2.0.3?
Hello All, I''ve run across something that looks like a bug and wanted to throw it out there for anyone else''s input before I submit a bug report and patch. This is only observed in Safari 2.0.3 with Mac OS X 10.4.5 - I haven''t tried any other versions of Safari. I''ve got 2 fields: text input 1 text input 2 with autocomplete If you: 1. Enter some value
2005 Aug 06
1
why is the result of expr. Ajax.InPlaceEditor not an object in Safari
hi guys. i''m really thrilled about the in-place editor and rahul''s additions/ examples at http://www.instituteofthefuture.org/js/inplace.php i know that this "mozilla only" script will eventually get fixed and be usable in safari as well, but i can''t wait, so i''ve tried to poke around a bit -- of course, without success. i am much more of an
2006 Jun 06
1
Getting value of form using Ajax (and problems with Safari)
I have got two forms, the first is a textarea plus a link that activates some javascript to change the form, the second activates some javascript on the onchange event which changes it into a textarea form. This works in Firefox, but not in Safari. Also, I need the value which is selected. I''ve found an example that gives the parameter to the javascript, like this: <input
2005 Oct 06
0
Re: Ajax.Request: responseText = null in Safari
Hi > Any tips? Does my PHP script need to return certain headers for > this to > work in Safari? It is probably worth doing a sanity check and hard code a php response so you know that the problem is at the receiving end and not a problem with the php request from safari. The content-type header of the response should be text/xml or application/xml but I don''t think
2007 Mar 22
0
Safari 2.0.4 display of raise is incorrect
Using Mac G4 Quicksilver 867mhz Mac OS X 10.4.8 Ruby 1.8.5 and Rails 1.2.2 I''m new to RoR so I cannot quite understand why Safari displays a raise action this way RuntimeError in Admin contactsController#set_contact_postcode {&quot;action&quot;=&gt;&quot;set_contact_postcode&quot;, &quot;id&quot;=&gt;&quot;2&quot;,
2006 Jun 23
3
Ajax errors in safari
I am implementing some AJAX features into a web forum, and one feature works fine in Firefox and in IE, but it is choking in Safari. Safari will send the request fine and the data will be stored in the DB, but it is not responding correctly to the RJS that is being sent back. Anybody notice issues with Safari parsing the javascript sent back to the browser? -- Timothy Johnson
2007 Jul 16
0
Ajax works in FF but not safari!
The following code works perfectly in FF, but does not work in safari. I''m on Edge Rails with the latest javascripts. Any clue what''s going on? CONTROLLER: def create @program = @school.programs.new(params[:program]) if @program.save render :update do |page| page[:program_list].replace_html(:partial => ''program'', :collection =>
2008 Jan 03
0
Ajax error on Safari
Whenever page.hide ''header'' is called from controller, it shows TypeError: value undefined .. not an object. What could be wrong? Works fine on FF and IE -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this
2007 Aug 03
3
Ajax.Autocompleter fadeoff when scrolling the list in IE and Safari
Hi All: I have a very large user table, more than 2.000, so i cant use a <select> to present the users list any more. I replace the <select> with a <input> using Ajax.Autocompleter If we type "john" or "peter" we still get a very long list, so the list shows the scroll bar, and its ok. The problem is that when we try to scroll, the list fades out. It
2008 Mar 19
6
Back button behavior has changed again in Safari 3.1, after doing a dom update via ajax/RJS
GAH! Here is the firefox behavior, which is perfect: 1) View page 1 2) Update some text by using link_to_remote or remote_form_for, along with an RJS replace or replace_html 3) Navigate to page 2 4) Hit back 5) Page was cached with dom updates, note that the page is show in the same state as it was left Safari 3.0 behavior 1..4) repeat 5) Page reloads, ending up in the state where it was left
2006 Jan 09
2
Using SQL to get a whole record when using aggregate functions
I have a table with some data structured something like this: book ---- title (varchar) pages (int) completed_on (date) While I can find the shortest book completed in each year with something like this: select min( pages ), year from book group by year I would also like to get the title of the shortest book in each year. Is there any way to do this by modifying the previous query to pull
2007 Mar 01
6
prototype ajax.updater response bigger than 10k on safari
Hi All, Safari crashes everytime my ajax response is bigger than 10k, i traced it down and found out that it breaks when evalScript is being called, maining when extractScript is trying to match the regex..... is this a known bug on safari? if yes is there anyway to get around it? thanks in advance --~--~---------~--~----~------------~-------~--~----~ You received this message because you
2019 Feb 16
2
Question about updates
One can also do the 'yum-cron' dance to automate updates. Good writeup and description here: https://www.howtoforge.com/tutorial/how-to-setup-automatic-security-updates-on-centos-7/ On Fri, Feb 15, 2019 at 11:37 PM Rob Kampen <rkampen at kampensonline.com> wrote: > On 16/02/19 6:59 PM, Ralf Prengel wrote: > > Hallo, > > as a beginner using centos I?ve a question
2006 Apr 30
4
Migration, BigInts, and string lengths
Howdy Y''all, I was thrilled to recently discover migrations, as that framework addresses a common problem in an elegant way. I have, however, gotten tripped up a bit as I''ve worked with them. The first problem I encountered was that, though I was using a BigInt data type in a field in my dev database, my unit tests were failing because when I copied the schema from the dev
2005 Oct 01
8
Ajax.InPlaceEditor on Safari & Firefox
Hi, I''ve downloaded the latest svn trunk and was glad to see that Ajax.InPlaceEditor forms can now be correctly submitted on Safari as well, with the server response being correctly displayed as well. The problem is, however, that clicking again on the same element (after sumbitting it first) will duplicate the submit form. The next attempt will triplicate it etc, etc... Could
2008 Feb 28
15
Ajax.Updater response encoding Safari
new Ajax.Updater($(''toppanel''), ''/ajax/form.php'', { parameters: {}, evalScripts: true, insertion: Insertion.Before }); form.php encoding is utf-8. page encoding is also utf-8. Why response encoding is broken in Safari? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby
2003 Nov 06
2
Search engine fails entirely (PR#4966)
Full_Name: Robert King Version: 1.8.0 OS: linux (debian) Submission from: (NULL) (134.148.20.33) Also seen in 1.7 Start R, Start html help (mozilla), go to search engine, try searching for mean No results given. Mozilla javascript console says: Error: document.SearchEngine.search is not a function Source File: file:///tmp/Rtmp22901/.R/doc/html/search/SearchEngine.html Line: 32 line 32 is
2005 Dec 27
1
Odd Behavior with render
I''d been trying to iterate through an array of hashes using the ActionController''s render method. Unfortunately, it appears that when I use a hash as one of the array elements, it gets passed as a nil to the partial. Here''s some code: @books = [ ''hello'', ''hello2'' ] render :partial => "book",
2007 Jan 16
2
On2 VP3 codec for Intel macs
Hi all, It's been a few years since I encoded a number of movies using the VP3 codec (v3.2) on my Quicksilver PPC. Now I have a new Intel mac and I'd like to play them. However, it seems that the codec offered on On2's website is only for the PPC architecture. Does anyone know a workaround or some other codec that works on the MacIntel platform? I'm using Quicktime Pro 7.