Why my unexpected outcome just making a link? [closed] - html

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 9 years ago.
Ive got this obviously wrong output when trying such a simple thing as making a link:
http://www.facebook.com/apps/a%E2%80%8Bpplication.php?id=164355773607%E2%80%8B006
Of course the link should be
http://www.facebook.com/apps/a​pplication.php?id=164355773607​006
and it's also corrrect in the code:
<a class="nobk" href="http://www.facebook.com/apps/a​pplication.php?id=164355773607​006"><img src="/_/img/facebook.png" alt="Facebook Kool Business" width="50" height="50"/></a>
My page with the bug is koolbusiness.com. Can you tell me what's wrong?
Thank you very much

Omit the spaces in "a pplication.php" and the id value.

Related

CSS3-PIE: ie 8 weird black spot issue [closed]

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 9 years ago.
If you have a look at the following link: http://78.109.168.22/tv - you will notice that in IE8 in the middle of the logo header there is a little black spotted area. I have no idea what it could be!
Has anyone got any ideas? I would love to hear them! It's driving me crazy.
Screenshot of what I'm talking about - http://i.imgur.com/AaZMHdr.png
Solution was a Drupal skip link ID. I just displayed this id to none in IE8 and it has now be resolved. Thank you all!
These line of code creating the problem
<div id="skip-link">
Skip to main content
</div>

Can't work out download URL [closed]

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 10 years ago.
I can't seem to work out the download URL of the CSV file on this webpage, all I can workout is this:
<div id="exportMI" class="settings-menu-item goog-menuitem ">Download as CSV</div><div class="settings-menu-item goog-submenu">
Doesn't seem very useful, can you help me get the download url?
You can use your browser's download manager to find out the download URL, which is http://www.google.com/trends/trendsReport?cmpt=q&content=1&export=1

Strange bug in +IE8 [closed]

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 11 years ago.
Please take a look at this page via IE 8 or 9: http://sneakyrascal.com/starpons/about.html
As seen there are two footers but in fact I only added one footer. I figured it's connected with <a> tag. when I remove it, it will work fine.
Thanks in advance for any help
You open a new a instead of closing it:
<a href="images/Ruby_BIS_0011.jpg" class="iframe" ><img src="images/Ruby_BIS_0011-300x234.jpg" /><a>
You should have found this when using a the validator.

how to parse html in iphone app [closed]

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 11 years ago.
i am doing an iphone app,
there are sample project in this web
http://developer.apple.com/library/ios/#samplecode/XMLPerformance/Listings/ReadMe_txt.html
how to change this sample project to get " A few years ago " in this web code:(http://www.ted.com/talks/matt_cutts_try_something_new_for_30_days.html)
???
Have a look at Hpple, it's a nice HTML parser using XPath queries, which are really easy to learn.

Anchor tag not works in IE6 [closed]

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 10 years ago.
I am using
<a href="www.google.com" > test link </a>
I didn't understand why its not working in IE6.
You need to include http://.
test link
You should also explain what exactly you mean by 'not working', but regardless of that, that's the only mistake I see in your link.