HTML Links pointing to current browser URL - html

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?

Related

URL shown in browser while editing page source in HTML

I'm making a tutorial which involves recording my computer screen. I need to click a link that normally directs me to, say https://website.com/page. I want it to redirect me to https://website.com/another_page, which can be easily edited using Inspect Element.
However, when I click the link showing now another_page, I want the URL in browser (Firefox, Chrome) to still be https://website.com/page. Is that possible?
You could do fullscreen in which case the url wouldn't even show. I don't know if that would work with your screen recorder, but it's worth a try. You could also the edit the url directly at the top of your screen so that it shows https://website.com/page and move your keyboard focus away from it so that it appears that the url is https://website.com/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

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

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>

Position of last-visited page

How does websites like Facebook or Stackoverflow remember the position I was at when I navigate away from their site to another site and hit the "Back" button on my browser?
It's not the website, it is the browser. If you have used ID's in your code, the browser will remember approximately which one you were at when you clicked a link.

Handling links from iframes in ExtJS

ExtJS - 2.0.2
I have a html page which uses ExtJs which has an iframe that I created using Ext.ux.ManagedIFrame. The iframe loads a web/wiki page and whenever a "link" is clicked in these child pages currently it replaces the whole browser window with the required link. I would like to load all pages opened in the same iframe and not in the browser window.
My child pages are straightforward html pages with "a href" links. Can this be done?
Parent Page
head
body
...
...
iframe id="childiframe" (can't edit anything inside the iframe contents)
head
body
........
Go
<!--
When you click on the above link rather redirecting the whole
browser to that link. I would just like the childiframe to reload
google.com
-->