href Questions
32
Solved
I'm trying to open a URL in a new tab, as opposed to a popup window.
I've seen related questions where the responses would look something like:
window.open(url,'_blank');
window.open(url);
But ...
Cinelli asked 5/2, 2011 at 15:52
5
Solved
When I try to use a link in my Django template from /appname/index/ to get to /appname/detail/### I am instead getting to /appname/index/detail/### which is not what I'm trying to get so my app can...
4
Solved
so I write this small app where I show some information fetched from Wikipedia.
There are also links inside of this fetched HTML.
So what I want to do:
Every time the user clicks on a link I want t...
Telfore asked 4/10, 2017 at 8:13
10
I am trying to create a set of links to specific sections in the page using the <a href="#..."> notation, but it doesn't seem to work. Clicking on the link seems to do nothing and right-click...
6
Solved
Trying to find code for switching between two style sheets with just one button. I've tried to adapt others' solutions, but to no avail (yet). Here's my most recent attempt:
Set Up:
<link id="...
Anthozoan asked 21/8, 2013 at 21:50
15
Solved
I want to dynamically create an <a href="mailto:..."> element, then "click" it. All without modifying the page.
I'm trying this:
$('<a href="mailto:[email protected]">&nbsp;&...
Volition asked 28/6, 2011 at 10:52
4
Solved
I am trying to write a GreaseMonkey script in which I want to find all of the links that are relative links. It seemed to me that the way to do that would be to match the contents of href against /...
Dicotyledon asked 11/10, 2009 at 15:4
5
Solved
<a id="a$id" onclick="check($id,1)" href="javascript:void(0)" class="black">Qualify</a>
After "href" is removed, is "Qualify" still clickable?
4
Solved
I have a table with rows, that when clicked, take the user to a page with more detailed information about the item that row was describing. Unfortunately, it always changes the current page, and ou...
Viguerie asked 25/6, 2013 at 8:53
4
3
Solved
I am trying to deploy to IIS. Not in root but in a sub-folder.
This is working:
edit web/index.html, change <base href="/"> to <base href="/ChangeTag/">
run flutter...
5
Solved
How would I make text appear under a link?
<div class="login">
<a href="">Login
<p>Access your profile here</p>
</a>
</div>
Where the login triggers the p...
3
Solved
I've a problem with anchor tags :/
I've got the following code:
<div name="divA">
<a name="A"> A</a>
</div>
<div name="divB" style="di...
10
Solved
I am trying to test my anchor tag. Once I click it, I want to see if the window.location.href is what I expect.
I've tried to render the anchor, click it, and then test window.location.href:
test...
Syncopation asked 6/9, 2019 at 18:40
4
Solved
How can I set an a href that is both a link to and has the text for a link through an XSLT transformation? Here's what I have so far, which gives me the error "xsl:value-of cannot be a child of the...
5
Solved
I'm trying to do something like this:
<div v-for="r in rentals">
<a bind-href="'/job/'r.id"> {{ r.job_title }} </a>
</div>
I can't figure out how to add the value of r....
1
Solved
I want to build a Web app with SvelteKit with one page listing all items (with potential search query parameters), and then one page for each individual item. If I had to build this the old school ...
1
Solved
In our web page, we have various links that open in a new tab, but obviously we need to open them in the same tab when using Cypress.
I've tried
cy.get('tr td:nth-child(9)').eq(index).invoke('remov...
2
UPDATE: It is still Not working. The Links are clickable but they are not taking where its suppose too. Example, From Frame 1 when You click on the Contact information, it should open that in Frame...
4
How to mailto to office 365 like this one on the gmail - Open Gmail on mailto: action.
I have this link:
https://outlook.office365.com/owa/#viewmodel=IMailComposeViewModelFactory
but I have n...
Abrasion asked 18/7, 2013 at 4:50
7
I have a page where I don't want the outbound links to send a referrer so the destination site doesn't know where they came from.
I'm guessing this isn't possible but I just want to make sure ther...
Acidimeter asked 17/2, 2011 at 18:58
17
Solved
There are different ways to show graphics in a page next to text.
I need to include a graphic/icon next to a hyperlink that indicates a new tab will be opened.
I know of at least these differ...
5
Solved
I'm creating a navigation menu with words with different colors (href links). I would like the color NOT to change on any state (hover, visited etc).
I know how to set the the colors for the diffe...
9
New to jQuery and I'm having trouble getting the parameters of a url that my server generates. I have a url like this:
<span class="popuptest"><a href="www.example.com/test?param1=1&p...
Vociferant asked 22/2, 2011 at 4:4
8
Solved
I am using this bit of jQuery code to get href of the link:
var url = $(this).attr('href');
-- and this bit of code to go to that href:
window.location = url;
Everything is just the way I wan...
© 2022 - 2025 — McMap. All rights reserved.