How To Distinguish Internal And External Links

Dec 8, 2011

I should write a script which should distinguish internal and external links with JS. The links can be absolute or relative. I thought the best guess would be to first check if it is a relative link by checking the first character of the string is a /. (but how do you do this?) Then it will be always an internal link.

Then I thought to check if the URL (this.href) starts with the current protocol + location.host . If YES, it is an internal URL, else it is an external URL.

So does anybody know how to check if a URL starts with '/' or '[URL]

View 1 Replies


ADVERTISEMENT

Is Internal JS Secure? (is External?)

Dec 19, 2005

I like having scripts external, but I wonder about the security of internal anyway. Someone could save and change the HTML, right? But is that possible with an external script? I always thought not (unless there was an error), until a person on this forum was able to grab the script I was working with at the time. No problem with that, but it brings up the question in my mind about security in general surrounding java-script.

View 8 Replies View Related

JQuery :: Select Internal Links In A Page?

Jun 11, 2010

wanted to know how can i select internal links in a webpage like[URL]and add a particular class to them.

View 1 Replies View Related

Make Internal Links Scroll Smoothly With JavaScript

Jul 18, 2007

Can any tell me whether you can change the speed of the scroll at all?

View 1 Replies View Related

JQuery :: Loading External HTML Pages Using .load() And Internal Is Not Working

Mar 16, 2010

I have a master.html where i have navigationDIV and bodyDIV, and on every click of nav tabs i am loading external html page into bodyDiv using following .load() function. $('#bodyDiv').load('home.html') Now I have some basic JQuery functions in external JS file which i have linked in master pagewhere i am using toggleSlide(), hide(), addClass() so and so forth, first time when page is getting load all these functions are working alright but the moment i am loading another tab page all functions stop working even on first tab also. Tab onClick script from where .load() function is getting fired:

<li id="one"><a href="#first" onclick="javascript:$('#bodyDiv').load('home.html')" >Home</a></li>
<li id="two"><a href="#second" onclick="javascript:$('#bodyDiv').load('trade.html')" >Trading</a></li>

Note FYI: I have used Jquery Tab UI on this page, the scrip is as below:

[Code]...

View 5 Replies View Related

One Button With Two External Links?

Feb 19, 2011

I want to make a button in html that will open two external links in new tab..

I already tried some of a tag fuction.. like this

<a href="http//:sample.com" target="_blank" href="http//:sample2.com" target="_blank"> Button here</a>

provide sample codes for this matter?

View 1 Replies View Related

External Javascript Links

Dec 16, 2004

i understand that it is possible to include external js links by:

<script language='JavaScript' src='../templates/gill.js'></script>

but inside this gill.js javascript itself, is it possible to add yet another external js that is in the same folder by:

<script language='JavaScript' src='../templates/gill.js'></script>

or

<script language='JavaScript' src='bottom.js'></script>

i suppose both should have work correctly but only the first one works but not the way it should. Is my code wrong or how should i correct it?

View 7 Replies View Related

Body Onunload For External Links Only

Jul 23, 2005

does anyone have sample code to display a pop up when a user leaves the
site? I really don't want to use this technique, but the clients
demand it.

I'm thinking something like un body onunload, catch the URL they're
linking to and parse it for our own site's url and only display the pop
up if they're different.

View 10 Replies View Related

Disable External Add Links For Website

Apr 8, 2011

I'm normally over on the PHP board but this one is definitely a javascript issue. The thread title doesn't quite cover my issue, so I'll try to explain a little further.I built a website for a client who tells me that when he hovers over a word on his page it pops up a link to a competing site. I assured him that I didn't put the links in there, that it's a script or program running on his computer creating those links as he views the page.So my questions:

1. Is there a name for this evil? 'Popup spam ads' or something?
2. Anyone know of a way to build in javascript or any other method to stop this from happening to his site?

View 1 Replies View Related

Open New Window For External Links?

Jan 21, 2009

I am using Toby's iKonize script and would like to add a little more functionality to the script but not sure how to.

I would like the script to find all external links and have them open in a new window, rather than setting the target, can this be achieved? Also, if the image could be added after the anchor so it doesn't get any of the styling associated with the anchor element.

View 3 Replies View Related

Add A 'blank' Target To Any Links That Have 'external' Specified In The REL?

Mar 11, 2009

I am using a JavaScript to add a 'blank' target to any links that have 'external' specified in the REL. This is working great, but on some of the links, I need to give the user the ability to click the surrounding <li> item as well.

So my regular link looks like this:

<li><a rel="external" href="http://www.google.com">Google</a></li>
I need to figure out how to add the REL to the onclick in the LI
<li onclick="location.href='http://www.google.com/';"><a rel="external" href="http://www.google.com">Google</a></li>

[Code]...

I can't seem to find any instructions about how to insert this REL option....

View 6 Replies View Related

JQuery :: Improve Appearance Of External Links?

Oct 3, 2009

For example, you want to make different all links (a tags), which href attribute is set to external site. So I wrote a small piece of JQuery code, which add class, to all external links.As bonus it's also do shortening of long URLs in link text.

View 1 Replies View Related

Redirecting External Links To Dynamic IFrame?

Jan 25, 2010

Disclaimer 1: I am not a programmer, just a curious designer, so please take that into consideration in your replies.

Disclaimer 2: Despite all advices against it, I couldn't find a better solution to my website than using iFrame

Disclaimer 3: Before asking for help, I researched *several* forums and although I found people discussing similar issues,


implementing a method to intercept and redirect external links to a dynamic iframe. By "dynamic" iframe I mean an iframe whose SRC would be filled up in accordance to the external URL being intercepted and that it would resize its HEIGHT accordingly in order to avoid scroll bars.The function for resizing the iframe id="child" is already correctly implemented like so:

<script language="JavaScript">
<!--
function calcHeight()[code]...

This "replacement" function would be called onLoad and if tested true would run and refresh the page with the proper value in the iframe SRC.All this should be accomplished while still making the iframe HEIGHT dynamically adjustable and show a "clean" URL in the browser, such as "http:[url].....The potential issues I foresee is an infinite loop due to two onLoad queries (one for SRC, another for HEIGHT) in the parent and child objects, which might required a merge into a single script.

View 26 Replies View Related

Open Links In New Window With External Function

Aug 10, 2010

turning the following inline code:

<a href="http://www.bing.com/" name="bing" onclick="return !window.open(this.href)">Bing</a><br>
<a href="http://www.lycos.com/" name="lycos" onclick="return !window.open(this.href)">Lycos</a><br>

[Code]....

into an external javascript function that will do the same thing (open all links in a new window individually if javascript is enabled, without destroying links in html for if javascript is not enabled).

View 4 Replies View Related

External .file With Array Of Menu Links

Feb 24, 2011

I have an external JS file with an array of menu links called (menu.js).

The code is shown below:

I have called the javascript in my websites main page (index.html), but it does not work.

The html code is shown below:

The javascript for the array of menu links works when it is inserted directly within the html file, but when it remains external and is called in index.html it does not work. I am not sure why this is the case.

View 6 Replies View Related

External Links Script From SitePoint Not Working?

Feb 26, 2011

My site pages are now html4/strict so I used the "function externalLinks" script found here [URL]. I followed the instructions carefully, made sure I copied the script shown to the external.js file and uploaded it into the same directory as the html files. Also made sure that external.js was called as required in the head. Also made sure all target="_blank" were changed to rel="external" as required. Unfortunately, it doesn't work. The link takes the visitor outside my site, instead of creating a new window. I don't get it. Here's one of my pages ... [URL]

View 3 Replies View Related

External Anchor Links Breaking Scrollpane?

Jan 19, 2011

If you click on the Retaining Walls link, it will direct you to a new page and the anchor will be highlighted. The issue is that if you attempt to click on Drainage or Design/Build, then it will not scroll up to the anchor.Other than that, if you were already on that page, then the anchors and scroll works fine. Is there something I can do to fix it?

View 5 Replies View Related

External Link Warning Message On All 'href' Links EXCEPT One?

Aug 1, 2011

I have this script and it's working pretty well. Except now I need it to not give the message on one single external link.

Code JavaScript:
$(document).ready(function() {
// Creating custom :external selector
$.expr[':'].external = function(obj){

[Code].....

This works on any "href" external link or link with class of "external". I have one link that needs to be added that is external but needs to appear to not be and not give the warning message.

View 2 Replies View Related

Get Links To Change The External File Currently On The Main Page Without Reloading?

Nov 26, 2004

I am in a bit of a rut in the self-teaching with JS. I am trying to get links to change the external js file currently on the main page without reloading, the external files are basically long document.write sections with a few interactive functions.

The closest I have found for help with this so far is a rotating script, but I want a manual change from a link (button, image, etc) instead of timeOut rotation. I am not sure what I need to do for the links to replace the timeout function to change the dynamic section.

View 4 Replies View Related

Existing Script - Change All My Links To External Sites To Open In A New Window

Jun 29, 2011

I have the existing code that will change all my links to external sites to open in a new window. I now want to change it to allow me to have a way that it will not do this if I put something special in the a href tag.

Code:

View 2 Replies View Related

Distinguish Intranet From Internet Requests

Nov 2, 2006

I've noticed that IE have different security approach when loading a
page from an inner intranet or when loading a page from the web.

Is there a way in Javascript to know when your page is running by an
outsider and when by an insider? How the browser knows?

View 1 Replies View Related

How To Distinguish Between Page Refresh And Window Close?

Aug 28, 2006

I'm not sure if this question should go to the "JavaScript" section;
but I'm open to non-JavaScript (like VBScript) options too. So, I'm
posting this here.

I have the following problem:

For my application, I need to ask a confirmation when the user closes
the browser-window. If the answer is positive, I would like to log-off
the session and close the window. If the answer is negative, I would
like to stay back (no logging-off, no closing the window).

I can't do this in the window.unload event because the window is
already closed when the unload event is fired. I tried doing this in
the beforeUnload event. But the beforeUnload event gets called even
when I refresh the page and in that case, I don't want to ask this
question or logoff.

View 1 Replies View Related

JQuery :: Tabs Links Inside Tab To Other Tabs Work But Active Class Not Visible & External Link

Mar 7, 2011

I'm having issues with jquery and the tabs I'm using. My tabs work but... I want some more functions and that seems to be a big problem for a Javascript and jquery newby.

My HTML:

Code:
<ul class="tabs">
<li>Tab1</li>
<li>Tab2</li>

[Code]....

I really don't know if this is correct but it works! What doesn't work is the active class. If you use one of the buttons in the first tab you go to the right tab but the tab itself has no class called active and that ruins the style.

2)
I also have one other question: lets say that all the above is my second page and I have my frontpage in which I also have buttons. I want somebody to use the button and end up in the third tab of page 2. My link is something like

Code:
page2.html#tab3

I read that using this should lead you the third tab but it's not working for me. You go to the first tab of page 2 instead.

I've been reading a LOT! Jquery for dummies, I googled, read the forum and other forums. I posted on a Dutch forum but no answer. I've added a lot of different code but it doesn't work.

View 9 Replies View Related

Distinguish Between Browser Close Event In Firefox Browser?

Apr 13, 2009

I have to open a new window when user closes the browser window. But the problem is that on browser close unload event calls and the same event is called with we refresh the page. So it is opening the popup window on both window close and window refresh.

View 1 Replies View Related

How To Distinguish Between Logical Click And Physical Click

Mar 4, 2009

is there anyway of distinguishing between whether the button is clicked directly by a mouse or its click event has been triggered logically?

<input type="button" id="someID" value="dene" onclick="alert('something');" />
<input type="button" value="dene2" id ="someID2" onclick="document.getElementById('someID').click()" />

i want some kind of thing : when you directly click on someID button, it wont do anything, but when you click on someID2 button, it will alert.

View 2 Replies View Related

Distinguish Between Logical Click And Physical Click?

Mar 4, 2009

Is there anyway of distinguishing between whether the button is clicked directly by a mouse or its click event has been triggered logically?

I want some kind of thing : when you directly click on someID button, it wont do anything, but when you click on someID2 button, it will alert.

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved