HTML - Add To Favorites With A Reference
Hi,
I want to use a text link in order add a certain page in my website, to the favorites list. But I want it to be added with a reference, so later on I will be able to see ( with the statistics program of my site) , how many times people entered This page through their favorites list. Right now I use this code, which does the job but without the reference: <p><u><span style="CURSOR: hand; COLOR: blue" onclick="window.external.AddFavorite(location.href, document.title);">Add to favorites </span></u></p> For example: If the page is http://www.help.com/me_please.html I would like the url that is added to the favorites list to be: http://www.help.com/me_please.html&ref=favorites Any help would be most appreciated Thanx Niv Similar TutorialsN00B here with very limited html code experience, but thought this looked like a great resource. I have a page, that various users hit somewhat infrequently. I have created a new location and have placed code within the page to forward a user to the sites new location. In the example below, I want the user to be redirected to the new location, but I want them to have the option to add the new URL to their favorites from the initial page. How can the code below be manipulated to add the new URL to their favorites instead of the initial page? I hope this makes sense and isn't too dumb a question. Thanks in advance!! <HTML> <HEAD> <META HTTP-EQUIV="refresh" content="10;URL=http://collaborate/sites/test"> <TITLE>We have moved to a NEW location.</TITLE> </HEAD> <BODY> This site has moved to a new location; please update your favorites/bookmarks. You will be redirected to new location in 10 seconds. <FORM> <INPUT TYPE = "button" VALUE = "Add This Site To Your Favorites" onclick = 'window.external.AddFavorite(location.href,document.title);'> </FORM> Please contact XXXXXX with questions or concerns. </BODY> </HTML> Hi everyone, I have a page that displays 40 pictures (of paintings) with a short description of each. I am trying to think of a way to enable a user to add whichever paintings they want to a list. Basically, so they do not have to scroll through the whole page to view specific paintings. I thought about converting the page from XHTML to ASP.Net and then addign checkboxes under each picture. I thought about using C# to get a list of the checkboxes checked. How do I then display a new page (or somewhere on the same page) with only the selected graphics? Any ideas would be appreciated. I am a newbie at web programming. Thank you! Marc Hello! I just want to do 2 things: - Fix my website visualization ( Its WRONG on firefox and right on IE7, i dont know why =x) >>my website = www.emuspace.co.nr -What should i do to when i click on a image, it adds my site to users favorite ? ty! is it possible to link html code from a seperate external html file. example, the footer and header is always the same and the content changes. can i create a header.html and a footer.html and have my content pages link to the header.html and footer.html. so if i ever need to update the header or footer, i have to do it once. I tried to look on the net but don't know what key words to look under. thanks., Hi dudes, I am having a value in the hidden field of the form and i need to use the value of the hidden field as the source for the anchor tag href. How could this be possible. Suggest me a solution as quick as possible. Thanks & regards, Muthuselvan.N The tutorials on this site are geared toward the newcomer. However, the reference guide provides useful information that would be useful to anyone. http://www.halshtmlschool.com/ i want to show '<' on my web page, but when I type in '<' i get '<' and when I use '<code><</code>' or <pre><</pre> -- i still get '<' on the webpage. the only way that i can display '<' is to use '&lt; is there another way So here's the sitch: Our website, Watershedpdx.com, works from its outside IP address UNLESS you are inside our local area network. It's a Comcast issue, and their router seems unable to rout internal requests for our own IP from the internal and around to the router. I know I could modify the .hosts file on every computer and such, but for now, I've opted for a slightly different solution: If I'm inside the building, I check our own website with it's local IP: http://10.1.10.197 Now, the issue comes up because I'm streaming video to the web at http://10.1.10.197:8079 and http://10.1.10.197:8078 Is there a way to reference this in the code without the IP address? For this to be visible to the internet, I link it in the code as http://watershedpdx.com:8078 - but then the computers in the building can't see it. Is there a reference like http://..:8078 that would work? OK it said be specific so here it is. I am a first time html'er infact I am just now in an html/css class, the downside is my honors organization wanted a website this week. I was able to build something novice like @ http://www.asu-bap.com what I noticed is when I use images or a css stylesheet on the index page everything works grandiose. However, when I reference the same style sheet on other pages such as join.html or announcements.html it would not use the style sheet. I got really irritated and just embedded the css into each page individually. Think that my code was just that bad and i had nowhere to go for help. Then... I tried to do an image on my calendar.html, and i had the same issue... I even tried (as I had with the css file) to create a brand new directory called calendar and putting the img in there. To no avail, it still would not pull up the image. I am like 90% sure my code is right for the image so then I found this website and decided to try to get help here. Here is my code for the calendar (its a word doc converted I just added links and img), I have everything uploaded to root directory. Please help. And if you fix what could have been my css referencing issue, I wills end you cookies! Code: <STYLE TYPE="text/css" MEDIA=screen> <!-- body { padding-left: 11em;} ul.navbar { list-style-type: none; padding: 0; margin: 0; position: absolute; top: 2em; left: 1em; width: 9em } ul.navbar li { background: white; margin: 0.5em 0; padding: 0.3em; } ul.navbar a { text-decoration: none } a:link { color: blue } a:visited { color: purple } address { margin-top: 1em; padding-top: 1em; border-top: thin dotted } --> </STYLE> <!-- Site navigation menu --> <div class="style1"> <ul class="navbar"> <li><a href="http://www.asu-bap.com/">Home</a> <li><a href="http://www.asu-bap.com/forums/">Forums</a> <li><a href="http://www.asu-bap.com/announcements.html/">Announcements</a> <li><a href="http://www.asu-bap.com/join.html/">How to Join Beta Alpha Psi</a> <li><a href="http://www.asu-bap.com/calendar.html/">Calendar of Events</a> </ul> <img src="1_BAP_color.jpeg" /> All the books I've seen are targeted at either newbies, experienced, or expert users. All I want is a reference that shows all the tags and all the formatting options. For example: Table <table></table> Table options <table style class height width border colspacing padding> Table row <tr></tr> Table row options <tr ..... > Table data <td></td> Table data options <td ..... > See? For every avaliable tag. I just need a reference, not code, nor how to's. Just a reference to the tags and parms they can take. If you know of a book title that covers this, please indicate. Thanks! |