Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
2answers
2k views

Cross-reference (named anchor) in markdown

Is there markdown syntax for the equivalent of: Take me to <a href="#pookie">pookie</a> ... <a name="pookie">this is pookie</a>
3
votes
1answer
41 views

Page Layout and implementation

I have a single-page layout that uses # in a fixed navigation to move up and down the page. When the page loads I want the viewport to display the second section not the top section. Do I have to use ...
3
votes
1answer
238 views

Firefox 3.6.8 doesn't work with an anchor, it rolls down to the page's bottom

There is an anchor in one of my websites. http://www.autostitkok.hu/tozsde3.html#jelentkezes Firefox 3.6.8 doesn't "stop" at the anchor if I use an anchored link, but rolls down to the bottom of the ...
3
votes
3answers
6k views

Using HtmlAnchor or ASP.NET HyperLink for anchor tag that navigates in-page named anchor

I am trying to render a simple hyperlink that links to a named anchor within the page, for example: <a href="#namedAnchor">scroll to down</a> <a name="namedAnchor">down</a> The ...
2
votes
3answers
56 views

how to debug bookmark anchors not working

I've got a really complicated html page and I've added some bookmark anchors at various points. The anchors look like this: <a href="#foo bar">click here for foo bar</a> lorum ipsum etc ...
1
vote
1answer
25 views

How to identify if a user clicked on an anchor link

I have an anchor link: <a name="mylink" class="myclass"></a> I send a link to an e-mail of my user with a link: http://preloaders.net/en/social_bookmarks/#mylink question: how do I ...
1
vote
1answer
308 views

jump to named anchor with javascript

I have a php (codeigniter) program that displays all the finished projects of and engineering company. I can click the detail page and from there I can click a link to go back to the overview page. To ...
1
vote
2answers
185 views

Ajax # and scroll-to #

Is it possible to have both an "AJAX" hash mark # as well as a scroll down to one? Thanks.
1
vote
1answer
259 views

Get bookmark value from URL calling classic ASP

If I'm calling for example, http://www.mysite.asp?p1=2&p2=3#Bookmark Does the browser invoke that #Bookmark after the "classic" ASP generates output? It appears that it's not coming thru, the ...
0
votes
0answers
46 views

Part of page is missed when using link to jump to an anchor point

our pages are based on JSF and in XHTML. We have some links point to another page with anchor point specified. (using #). When user clicks on these sort of links, it shows the page and jumps to the ...
0
votes
2answers
78 views

why does return Redirect(“/”); in ASP.NET MVC redirect to http://example.com/#_=_ Why is the named anchor added?

So here is the code: private ActionResult MyMethod() { //do stuff return Redirect("/"); } I have a bunch of different methods like this in my app. All behave well and redirect to the home ...
0
votes
0answers
95 views

Load page anchor/div into jQuery UI dialog

I have the following jQuery script which uses ajax to load another internal page into a dialog. function showUrlInDialog(url){ var tag = jQuery("<div></div>"); jQuery.ajax({ url: url, ...
0
votes
2answers
58 views

Bulletproof “back to top” anchor that works with base href?

How can I create a bulletproof "Back to top" anchor that works regardless of whether the site has a base href or not? Should I use script to sniff the current URL of the page and dynamically create ...
0
votes
2answers
45 views

Named anchor “s” doesn't work?

In a "table of contents"-ish area we see: <tr> <td><a href="#r">R</a></td> <td><a href="#s">S</a></td> <td><a ...
0
votes
2answers
100 views

When given a named anchor (#comments), make the page jump to 30px lower than the actual anchor

Is this possible without using jQuery or javascript? I've tried to relatively position the anchor tag, and then use top: -30px, but that doesn't seem to matter. The page always jumps to where the ...
0
votes
1answer
59 views

Page anchors fail Visual Studio 2010 HTML validation

I have a few <a name="something"></a> entries in my html page to enable page anchors; Visual Studio 2010 (with either HTML 4.01 or HTML 5 target) underlines name attribute and shows ...
0
votes
1answer
201 views

Can a submit button in a php form also be an anchor?

In order to customize a product before adding to the cart, I'm using a php form with two submission points - upload an image & attach text. Instead of having the page refresh to the top after ...
0
votes
2answers
310 views

Whats the best syntax for using html named anchor texts on tabs for better seo searchability?

Question about anchors in html, with maximum seo-friendlyness as well as user-friendlyness. Currently, the tabs on our website use javascript-auto-created numeric anchors e.g. when mouse hovering on ...
0
votes
1answer
96 views

Linking to a specific section of a page from Google custom search engine result

I would like to know if there is a way when using Google custom search engine to have Google CSE link to a page with a URL like this ...
0
votes
1answer
1k views

jquery scroll to named anchor when navigating from other page

I have a submenu that is expanded on all pages of my site. The submenu contains links to named-anchors within one page which the parent menu item links to. I am using jquery scrollTO and localScroll ...
0
votes
1answer
868 views

Firefox reloading parent page in iframe when clicking named anchor

My site has an iframe which is dynamically populated with html content. The html often contains named anchors, which work fine in IE/Chrome but in Firefox it reopens the entire page within the iframe. ...
-1
votes
2answers
69 views

Anchor tag not centered on page after clicking

I am creating a website that scrolls down to different divs by the use of anchors. However, when I click on a link, that anchored div is not centered on the page. I positioned my divs absolutely but ...