Extract and select links from webpage - html

There is a website that I visit daily called thegudda.com, this website posts lots videos on a daily basis so instead of going through the website and clicking link by link, I wanna make an iOS shortcut that select all the video links at once on the webpage then I can choose all of them and open them in new tabs... What I got so far: ^https://www.thegudda.com/(.*)([A-Za-z]+)\b(?
https://www.thegudda.com/crazy-bird-attacking-people-and-one-dude-ended-up-paying-the-price/
https://www.thegudda.com/crazy-bird-attacking-people-and-one-dude-ended-up-paying-the-price/
https://www.thegudda.com/that-look-on-his-face-what-do-you-think-kanyes-thinking-in-this-moment/
https://www.thegudda.com/that-look-on-his-face-what-do-you-think-kanyes-thinking-in-this-moment/
while I just want each link one time...

you can put them in Set, the Sets by default removes the duplicate elements.
you can see more about Sets here:
https://docs.swift.org/swift-book/LanguageGuide/CollectionTypes.html
in Sets section

Related

How to link to specific tab panel in html

I cannot work out how to link a button using the rectangular hot spot tool in Dreamweaver to a specific tab panel or pane on the same page. I have an index page of stories where, for example, I would like to link each number on the index to separate panels on the same page. How can this be done using HTML?
You can see the website here:
https://illustratedfairytales.com/
I have googled the subject, but I haven't been able to find anything which helps.

Canva.com, how can I have opend link in new tab

I am training to add links to my Canva project.
But I need links which one opens in new browser tab. Is anyone knows how to do this?
To link to another website page, enter the link, and press Enter on your keyboard or click anywhere on the editor.
To link to another page within the design, select the page you want to link to from the Pages in this document section in the dropdown.
To link to one of your recent designs, select it from the Recent section in the dropdown. Make sure have the right permissions to the design you’re linking to so it loads properly to your audience.

close duplicate tabs in web browser

I am trying to open multiple links from excel such as follows
https://in.tradingview.com/chart/?symbol=NSE:ASHOKLEY2!
https://in.tradingview.com/chart/?symbol=NSE:ASIANPAINT2!
https://in.tradingview.com/chart/?symbol=NSE:AUROPHARMA2!
https://in.tradingview.com/chart/?symbol=NSE:AXISBANK2!
what i want to accomplish is, once this tabs are open in browser, if any of this links are again opened by using excel, they should be get automatically closed.
I used clutter free extension ,
issue i am facing with it is that, once the first link is opened all other links get automatically closed
i.e if i open link https://in.tradingview.com/chart/?symbol=NSE:ASHOKLEY2!
next three links mentioned above dont open at all.
but what i expect is all this links should open, and next time if any of this links are visited again then they should not be opened.
how can i solve this issue?

html transfer information from one page to the next

So I have been looking into this for a few weeks and have come up with nothing!
I work on the website for my families music store, and have been asked to add a "Links" page to the website. My goal would be to have the categories of our vendors (i.e. Violin, Guitar, Piano, etc.) on the left of the page and when the category is selected the links come up on the right. That part I have. The tricky part here is: When a link to a vendor (i.e. Fender, G&L, Yahmaha) is clicked instead of taking them directly to the site, I want it to take them all to the same page, but embeded on that page is the site.
I have done a lot of research on this and have come up with nothing. I could just go through and make a new page for each of the vendors, with the embedding on each individual page, but that is extremely time consuming with the amount of vendors.
Is something like this at all possible? I've been playing with embedding itself and have that down. It just comes down to, which link did they click, and loading that specific page.
If there is any more information you may need to help or point me in the right direction please let me know! Same with any code that may be helpful!
I've come up dead on all my research on this.
EDIT: I guess my ultimate goal is that it will look something like this: http://answers.yahoo.com/ so that the vendors website is open on bottom, but our stores banner and links are still at the top. Out website can be found here: http://www.brassbellmusic.com/default.aspx
I've created a JSFiddle to demo this functionality using jQuery.
We iterate through the list of brand links in the ul:
$('#brandListing a')
Capturing a click event on each:
.click(function(ev){
jQuery passes an event object to the anonymous function (ev). When the link is clicked, we first must prevent the default action, which is to follow the link. Then we update the src attribute of the iframe (the "embedded page") with the value of the href that was clicked:
ev.preventDefault();
$('#embeddedBrandWebsite').attr('src', ev.target.href);
You'll need to add the jQuery library to your page to use my code sample, but it's possible to replicate the functionality without it.
EDIT
The sample above is for a single page implementation, where links and the embed are on the same page. To achieve the requested "transfer of information," I recommend passing the target href as a GET parameter (brassbellmusic.com/brandEmbed.aspx?path=http%3A//www.gibson.com/). On the single "embed" page, you can then extract this either on the server side to set the iframe's src, or using javascript. With javascript, you might use:
function getURLParameter(name) {
return decodeURI(
(RegExp(name + '=' + '(.+?)(&|$)').exec(location.search)||[,null])[1]
);
}
Source
And then after your document is ready, set the iframe src using getURLParameter('path').

Facebook Page Default Landing Tab is NOT WORKING

I've been looking for an answer everywhere and cannot find the answer to this, I have absolutely no idea what I'm doing wrong.
I created a custom tab for my page, and I set the default landing tab for the page to this custom tab, however whenever you visit the page it just goes straight to the wall.
I don't want people visiting my page to land on my wall, I want them to land on the custom tab, that's why I created it.
How do I get the default landing tab option to work for my pages? They're all doing this.
If you already "like" the page (or are an admin), it will always take you to the wall. If you are not a fan or an admin, it will show you the tab specified. That is how these tabs work, there is not an always to always show the tab for fans.