Questions tagged [internal-link]

36 questions
9
votes
4 answers

Access of static variable from one file to another file

I recently came across the question like how to access a variable which declared static in file1.c to another file2.c? Is it possible to access static variable? My understanding about static keyword in C is, static is "internal linkage", so they are…
vinay hunachyal
  • 3,781
  • 2
  • 20
  • 31
7
votes
4 answers

Simple Internal Links not working

This should be pretty straightforward, I am trying to create a "Table of Contents" that links to various parts of a long page... This is what I tried: Further down in the page...
AnchovyLegend
  • 12,139
  • 38
  • 147
  • 231
3
votes
1 answer

Simultaneously creating internal and external linkages in C

I was reading a C reference about linkage (external, internal and none) and came across the following: If, within a translation unit, the same identifier appears with both internal and external linkage, the behavior is undefined. I wanted to know…
Abhay Aravinda
  • 878
  • 6
  • 17
2
votes
1 answer

Jupyter Notebook: First interal link works; subsequent ones do not

I have the following in a jupyter notebook, although not all in the same cell. Every cell set to be markdown type, including the html. The top-most link to Introduction works fine, but the others do not. How can we get the second and third link to…
Toothpick Anemone
  • 4,290
  • 2
  • 20
  • 42
2
votes
2 answers

Override l() function in Drupal

I'm currently working on a Drupal site (6.*), which when in production mode will be accessed through some kind of http proxy, which means I will have to rewrite all the links for my custom theme if the $_SERVER['HTTP_X_FORWARDED_SERVER'] variable is…
Marco
  • 2,329
  • 1
  • 21
  • 25
2
votes
4 answers

What are internal and external links on HTML pages?

I am a bit of confused about internal and external links. Basically I am designing my SEO. So what is the basic difference between internal and external links?
2
votes
1 answer

Preventing scrolling on clicking an internal link

I have an internal link on my html page. Two things happen on clicking an internal link. Page is scrolled (jumped) so that the target of the link is at the top of the page. url reflects the internal link clicked by showing /abc/#... I noticed that…
Parit
  • 152
  • 6
2
votes
1 answer

internal links and slimScroll, scroll bar doesn't move to the right position

I'm using the slimScroll plugin on my website, but when i click to one internal link the scroll bar doesn't move. The content moving to the right position, only the bar stay on the top. Any idea for that?
Bergkamp
  • 73
  • 3
  • 8
1
vote
3 answers

HTML: How to use internal links to text in a page?

Putting a link to text is really straightforward: Text , and so is making that link a picture, but what I want to know how to do, and i have not yet found the answer through numerous google searches, is how i would have a…
user13106821
1
vote
1 answer

google analytics duplicate url with unicode character

when I checked my google analytics > acquisition > search console > landing page understand that I have 2 URLs for each blog post. for…
1
vote
1 answer

How can I get verbatim href attribute

I have a page-internal link in an html page: I selected this anchor element using Capybara matcher. When I try to access the href attribute, the value is expanded to full URL: find(".bar…
sawa
  • 165,429
  • 45
  • 277
  • 381
1
vote
2 answers

CMS: synchronize links to internal pages in page's content

I've made this modest CMS in PHP (and Zend Framework). The content of a page of the published website is stored in a MySQL TEXT field. When editing the content of a page, one is able to create links to other internal pages within the website. The…
Decent Dabbler
  • 22,532
  • 8
  • 74
  • 106
1
vote
2 answers

Javascript Bind function to mouse wheel

I have a single page website that uses internal anchors to give the illusion of multiple pages. I have written a javascript function that reads the mousewheel up/down from the user and that based on that, sends the user to the anchor above/below the…
1
vote
4 answers

Relative/absolute path of internal links for SEO purpose

Is it Okey to do like the following for SEO purpose:home, or do I need to do it like this:home? In each page of my website, do the links in navigation count as "internal links", why…
Ben G
  • 253
  • 1
  • 5
  • 15
1
vote
2 answers

Basic HTML Internal Link not working in IE8

This one has me scratching my head. I have a page with several internal links bringing the user down the page to further content. Beneath various sections there are further internal links bringing the user back to the top. This works fine in all…
Eamonn
  • 1,338
  • 2
  • 21
  • 53
1
2 3