link not opening in specified frame - html

I am trying to open a my linked in page in a specified html frameset frame I have setup. however it wont open the link in the specified frame set, but the link is valid as I have double checked this. (I am trying to open the link in the frame named Middle)
<a href="http://www.linkedin.com/pub/xxxx-xxx-xxxxx/3a/292/26a" target="Middle">
<img src="../Images/Linkedin.png" border="0" alt="Link in with me" align="right"
onmouseover="this.src='../Images/Linkedin_Rollover.png'"
onmouseout="this.src='../Images/Linkedin.png'">
</img>
Perhaps I have missed somthing?

Related

Is there a way of clicking on an image to bring you to a page using a hyperlink?

Basically, I would like to navigate to a page through an image, and on this new page it will contain the image clicked on. You're probably thinking I am stupid and there is a simple way but I would like to have a range of images that when clicked bring me to the same page but display ONLY the image clicked on.
Bit difficult to explain but hopefully you get what I am saying, I don't want a page for each image. I would like a Page that contains all the images but only displays the one that is clicked on the first "Home" page.
Thanks, the html I have for it ATM is below:
<img alt="Predators" src="Predators.jpg"
width="180" height="180">
</a><a href="Page2 - Mercurial Superfly.html">
<img alt="Mercurial Superfly" src="Mercurial-Superfly.jpg"
width="180" height="180">
</a><a href="Page2 - 99g.html">
<img alt="99g" src="99-gram-boots.jpg"
width="180" height="180">
</a><a href="Page2 - LimitedRonaldinho.html">
<img alt="LimitedEditionTiempo" src="Limited Edition Ronaldinho Tiempo.jpg"
width="180" height="180">
</a>```
So the href in the <a> tag is where it takes you. So if you want every image to take you to the same page use the same page name.(?) If you paste "https://www.google.com" in every href attribute every image will take you to Google. So instead of google you want to use your link.
If you want every picture to be displayed on one site depending on what was being clicked on I guess you'll need to use JavaScript. Your other website needs to know which image was clicked on.

Anchor Link Not Scrolling Down

I'm having a little trouble with an image linked to a section of the page. This link works fine when input into the bar and loaded, it'll scroll down but once the base page is loaded, if i click the image with the link, it doesn't want to go down the page to the tabbed section in question.
https://www.bollostore.com/beolab-50
That is the base page i'm running it on whilst
https://www.bollostore.com/beolab-50#product.view.paybyfinance is the link to the 'pay by finance' tab lower down the page. It is this that works a-ok if i put it straight into the url bar. But when I click the finance banner in the short description, it doesn't trigger.
The original that i've used is:
<img class="aligncenter wp-image-1176 size-full" src="https://www.bollostore.com/media/tmp/catalog/product/c/l/click-to-calculate.jpg" alt="finance for your tv and audio" width="1000" height="auto" />
you need to put a name tag in a element like
<a class="data switch" tabindex="-1" data-toggle="switch" href="#product.view.paybyfinance" name="product.view.paybyfinance" id="tab-label-product.view.paybyfinance-title">
Pay by Finance </a>

Can view pic in URL - but shows broken when displaying?

I am trying to insert an image on my site.
http://canarywharfian.co.uk/pages/kkkk/
As you can see it's showing as broken. However, when you click on it, it loads. I am confused why does it not show, if its loads if you click on it?
<a href="http://www.canarywharfian.co.uk/sample-2.jpg">
<img src="http://www.canarywharfian.co.uk/thumb2_trading.jpg border="0" class="firstimgbord" height="162" width="90"></a>
You forgot a closing " in your image src tag:
<img src="http://www.canarywharfian.co.uk/thumb2_trading.jpg" border="0" class="firstimgbord" height="162" width="90"></a>
^

to open a link in whole page rather than inside a frame

I have used frameset and frames to connect 3 html pages.The problem arises when i click on link provided in any of 3 html pages ,those link only opens in their respective frames.so help me so that i can open those link on whole page rather than inside a frame
Use the attribute target=_parent in the a elements.
Where you'd usually use:
<a href="http://www.example.com">
Or to open in a new window:
<a href="http://www.example.com" target="_blank">
Instead, specify the name of your frame as the target:
<a href="http://www.example.com" target="nav">

How can I get an html table cell that is a link to contain text and another link?

I'm trying to get a table cell that is one big href to contain two things - an icon that opens a popup (at location A), and some text that follows the cell's href (to location B). However I can't quite get it working.
Here's the HTML I have that only works for the icon/popup:
<table><tr><td>
<a href="http://www.google.com>
<span>
<a onclick="window.open('http://www.yahoo.com', location=no,scrollbars=no,menubar=no,toolbar=no,status=no,resizable=yes')">
<img src="smiley.png" />
</a>
</span>
Go to Google
</a>
</td></tr></table>
This works fine for clicking on the smiley icon and opening the yahoo popup, but clicking on "Go to Google" doesn't do anything.
Here's the HTML I have that works for following the href:
<table><tr><td>
<a href="http://www.google.com>
<img src="smiley.png" />
Go to Google
</a>
</td></tr></table>
This follows the href no matter what I click on in the cell (which makes sense, there's only one href).
I also tried this, but clicking on the icon would both open the popup and follow the href:
<table><tr><td>
<a href="http://www.google.com>
<img src="smiley.png" onclick="window.open('http://www.yahoo.com', location=no,scrollbars=no,menubar=no,toolbar=no,status=no,resizable=yes')"/>
Go to Google
</a>
</td></tr></table>
Any help?
You can't just have a link contain another link. Have two links, but separated. Use CSS to make them fill the cell if you have to.