similar to: Ajax errors in safari

Displaying 20 results from an estimated 4000 matches similar to: "Ajax errors in safari"

2006 Apr 14
18
RJS Templates & Safari?
Hello, I tried Cody Fauser RJS tutorial (http://www.codyfauser.com/articles/2005/11/20/rails-rjs-templates) on my railsplayground dev site and got it to work when using Firefox, but when I tried it on Safari, nothing happens. Then I tried this tutorial - http://rewrite.rickbradley.com/articles/2006/02/06/rjs-templates Similarly, it works fine on Firefox... but with Safari the list is not
2007 Feb 14
5
FormTestHelper should change hidden fields
Railsoids: FormTestHelper rules. It tests your response.body form at the same time as it triggers your action, with all the parameters in that form. This obviously improves quality. But it took issue with this: submit_form ''validate_stuff'' do |form| form[''IBhidden''] = ''validate'' end The field IBhidden is a hidden field. To be
2006 Jun 24
6
Ajax fade effect
I have a list of categories, when I delete one of them, I want that item to fade and then get removed. So I do the following: 1. home_controller: def delete @category = Category.find_by_name(params[:name]) @element_id = @category.name Category.delete_all(["name = ?", @category.name]) end 2. delete.rjs: if @element_id page.visual_effect :fade, @element_id
2006 May 16
7
RJS head scratcher
I''ve been joyfully using RJS in a lot of our work lately, with no issues whatsoever. However, I am porting an application to RJS templates that we''ve had for a while, and having some issues. When I use Firebug to see what is going on, the response comes back like this: try { new Effect.Highlight("gi_error_row",{duration:20}); } catch (e) { alert(''RJS
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 May 23
2
In Place Editor Fields and Safari
Hi, Does anyone else have any problems with Safari and in place editor fields? I''m specifically talking about trying to save a null value in a text box. In Firefox/IE/Camino/etc... saving a null value from an in place editor works how it''s supposed to. If the value is null, then ''click to edit'' is displayed. However with Safari when a null value is saved,
2008 Jun 03
3
Safari and Inheritance.
The following code doesn''t work in Safari, though its working well on FF/IE. We just recently started migrating and we are find issues with Safari 3.X var SipIxView = Class.create({ initialize: function() { } }); var CdrView = Class.create(SipIxView,{ view: function() { } }); I get the following error in Safari. var cdrView = new CdrView(); TypeError:
2009 Jun 10
3
Authenticity token error on Safari and IE6 on Windows
Hi, I cannot log in to my Rails application using Windows and Safari or IE6. Windows + Firefox works, and Safari or Firefox on Osx works also. What in hell is going wrong? I recently switched my app from restful_auth to authlogic, could that be the reason? I don''t remember having these authenticity errors before. Regards, -- Posted via http://www.ruby-forum.com/.
2020 Sep 25
2
Streaming issue with IOS and Safari
Hello everyone, Thank you for Icecast, it's a very good product. I have an issue with people using IOS and Safari. They can't listen my webradio. I'm using icecast and liquidsoap, it's working perfectly for everyone except for IOS users with Safari. Could you help me please ? BR, *Ceelo* -------------- next part -------------- An HTML attachment was scrubbed... URL:
2006 Feb 08
8
drag drop safari
does it not work? works fine for me on all other browsers and platforms.
2020 Nov 12
2
Icecast and Safari
Hello guys, I hope you're well. I have an issue with my Web radio. Users using Safari can't stream the radio. All is working perfectly with other web browsers. When i navigate on my icecast URL, player for the mountpoint is missing with Safari. Do you have any idea ? Icecast version : 2.4.99.2 OS version : Debian 9 BR, Ceelo -------------- next part -------------- An HTML attachment
2009 Mar 31
2
Safari 4 invalid auth token
Getting an odd error in Safari 4: Here''s the auth token that''s output to my javascript: 4HB8yAW4gU2xEavWOc+kiMoj4XIyCBUK/t704aOQ+co= Here''s what''s listed in the parameters: "authenticity_token"=>"4HB8yAW4gU2xEavWOc kiMoj4XIyCBUK/t704aOQ co=" notice: the +''s are being replaced by spaces. This a specific safari issue? I
2008 Jun 07
3
PeriodicalExecuter stops when form is submitted in Safari 3
Hi I''m having a problem using PeriodicalExecuter with a form. I have a monitoring pane that updates status of form processing, and it stops working when I submit a form. It works with Safari 2, IE, Firefox, but not with Safari 3. I''ve made a test script: http://www.charmm-gui.org/test.html It updates a textarea, but it stops updating when the form is submitted in Safari 3. Any
2006 Jun 29
1
Javascript Detect - Safari Version
Does anyone know how to accurately check for Safari version number? navigator.appVersion doesn''t work fine - it''s giving me funny results. I want to be able to tell a Safari 1.0 from a Safari 1.3 for my application.
2010 Jun 17
4
Apple Safari v5
Hi, Successfully installed Apple Safari using Wine 1.1.42 Once i start Safari, the apple flash comes and the below error message pops up. kindly help on this !! [img]/home/ideapad/.wine/dosdevices/c:/users/ideapad/My Documents/Desktop/safari-Program Error.png[/img] http://cid-9c18bdce84d8f01e.photos.live.com/self.aspx/Apple%20Safari%20Error
2020 Sep 28
2
Streaming issue with IOS and Safari
We had only MP3 for a long time, and all iOS users could listen. I don't think iOS likes OGG. We also advertise the VLC app in case someone has an issue with the web player. On 2020-09-25 16:04, Jordan Erickson wrote: > I would guess it has to do with the codec/format of your stream being > incompatible with iOS/Safari. What codec are you using? Have you > checked > to see
2006 Feb 25
1
Safari File upload problem
Hello! I found your post to the rubyonrails.org about Safari File upload problem Did you able to solve this issue? > Has anyone else had problems uploading files with safari? > > Excerpt from my .rhtml: > > <form action="/photo/create?item_id=<%= @item.id %>" > method="post" enctype="multipart/form-data"> >
2008 Dec 24
5
Odd js behavior in Chrome & Safari
View file has a js function "confirm_result()" in <head> section: <script type="text/javascript"> function confirm_action() { result = confirm("Please select OK or Cancel") if (result == true) document.write("You selected OK.") else document.write("You selected Cancel.") } </script>
2006 Sep 09
3
[Urgent] Help: Safari/Konqueror issue with absolute div initially hidden
Hi all, I have this project due tomorrow night (yes, it''s a Sunday...), and only one trick bug left, which only occurs on Safari 2 and Konqueror (3.5.2). I guess the Webcore/KHTML common tree goes here... You''ll find a test page online: http://tddsworld.com/bugs/hidden_absolute_issue/ If you want to tinker on your box, get the ZIP:
2006 Jan 05
1
unicode hacks - fixes for webrick and Safari
Hello! First, thank you Julian for the useful plugin ''unicode_hacks'' < http://julik.textdriven.com/svn/tools/rails_plugins/unicode_hacks/>. I have found some problems running my app in development on Webrick and looking at it with Safari (MacOS X 10.4.3, Safari 2.0.2). Some files are sent with different sizes (e.g. default css example, or controls.js ), and it