Safari address bar shows a blank page with "data:," after posting a form - html

When I post a form to my rails website (using turbolinks, not sure if it is relevant) from safari on mac, instead of redirecting to the next page, it just shows a blank page, with "data:," in the address bar.
I have an embedded youtube video on the page, in case that is relevant. Also, my form has a textarea that uses ckeditor.
The record is saved, just that it does not redirect to the show page as I would expect.
This does not happen on chrome.
The page source for the blank page shows up as:
<html> = $0<head></head><body></body></html>

Related

Facebook Page Embed as iFrame not working [duplicate]

I am getting error when i try to embed Facebook page using Facebook Page Plugin
https://developers.facebook.com/docs/plugins/page-plugin/
Code
DO i need to select App ID or its optional, as it doesnt work for me i have created different App ID but it doesnt work with one or the other page which i try to embeb. I have tried same on different browser but Embed code doesnt show on page on FF browser i get following error
Firefox Can’t Open This Page
To protect your security, www.facebook.com will not allow Firefox to display the page if another site has embedded it. To see this page, you need to open it in a new window.
and on Chrome page show as below
This is how it looks on web page

Redirects in in embeds tags don't redirect the normal page

In an embed I have a redirect. The location of the embed gets changed rather than the location of the actual page. How should I fix it?
The website that I am having troubles on is www.willmargulies.com if you click on anything in the headbar

iFrame not displaying in Safari

One of the sites I'm responsible for has a very odd issue and I feel like I'm up against a wall with it.
When loading
https://www.legacytitle-llc.com/resources/sellers-net-sheet/
in safari, the iframe (Net Sheet) doesn't load. If I open another browser tab and open the iFrame only, it loads, and if I then refresh the original page, it shows up.
How can I get the iFrame to load with the page when a user first hits it?

HTML Links pointing to current browser URL

I'm trying to create simple links using . I have a page just containing some video tags, some text, and some links. The web browser is treating all the links on the page as links to links t the current URL (ie. just refreshing the current page). No matter what I change the link to, it always just refreshes the page. Links on other pages work just fine, it's just this one page.
If the browser's current URL is http://www.my_domain_name.com/Folder/index.html and I have a Link the link just reloads the page. When I hover over the link, the browser says it points to the current page. When I view page source, the link is correct in the HTML code. Am I missing something?

Form Inside IFrame Submitting to Target _blank Fails in IE

First, this issue only occurs in any version of IE and works correctly in Firefox and Chrome.
I have a form which is on a page inside an iframe. I am submitting the form to a page on our other web site. When the form page is on top (not in an iframe) all works fine. If I place this same form in an iframe and submit the form, a new window opens as expected however none of my form values arrive at the target page. This smells like an IE bug or security/permissions setting. Again, it works perfectly in Firefox and Chrome.
I am seeing the issue whether I add target="_blank" to the form tag or I add it say via jQuery after the form loads.