hyperlink

Insert form buttons outside a form

Is there a Rails library that allows you to insert form buttons and use them as hyperlinks instead? I think I've seen it somewhere before. ...

Links css underline

I have the following style for my footers in my css file: #footer { text-align: center; font-size: .7em; color:#000000; } This is the html for the footer part: <div id="footer"> <br> //google ad <br> <br> <A HREF="http://www.site1.com"&gt;Blog&lt;/A&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;A HREF="http://...

Backlink-reporting website crawler?

What tools are there out there to crawl a website and report, for each page, a list of pages within the website that link to it? ...

How do I get two colors in one hyperlink?

Hi all, I have a hyperlink in my website that I want to be part #A0A0A0 and part #880000 for a:link and a:visited and I want it to change to part #FFFFFF and part #AA0000 for a:hover and a:active but I want it to be all one link. I have tried two solutions so far but neither worked out the way I want. The first was: a.menu:link { colo...

Placing link at top

How do I place a link at the top of my page when the URL that it is pointing to is not determined until later down the page. In this example, I want to move Create and Edit Scenario links to the top of the page, but as you can see Edit Scenario depends on knowing the @scenario_id first. <%= will_paginate @scens, :next_label => 'Older', ...

Isolating jQuery functions

I have some jQuery code that highlights a link when clicked, and changes the font size and color of certain links on the page. My problem is that some of the functions in my jQuery are executing on ALL the links on the site, rather than just the ones in the div that I am trying to target. Here's my code so far: $(document).ready(f...

Javascript - write links to new tabs

Hi, Using Javascript in a firefox extension, I have opened a new tab. I am unaware of how I can write a link to www.google.com and other links (a whole list) in this tab, where the user can click a link and this page will open. Thank you for your help so far I had typed in : var newTabBrowser2 = gBrowser.getBrowserForTab(gBrowser.sel...

Know when a hyperlink within a Text Field is clicked?

In Flash, is there any event when the user clicks a hyperlink in a TextField? ...

Generate links in ASP.NET MVC?

I have the following route definition in a MapRoute Table: routes.MapRoute( "ViewDocument", "browse/document/{document_id}/{document_title}", new { controller = "Document", action = "ViewDocument"} ); I have to create links of documents on document index view (document object have "id" a...

looking for a link validator

Hi! I'm looking for a good link validator with a list where I can exclude URLS with wildcards. ...

jQuery disable a link

Hey, Anyone know how to disable a link in jquery WITHOUT using return false;? Specifically, what I'm trying to do is disable the link of an item, performing a click on it using jquery which triggers some stuff, then re-enabling that link so that if it's clicked again it works as default. Thanks. Dave UPDATE Here's the code. What it n...

Links in Ramaze with a/r helpers

In ramaze (2009.06.04) the link helper has changed and I have some problems to use it. I want to create a link to the MainController -> test action #{a('Testlink', r(:test))} This works if the URL is not in a specific controller. If the user is in a other controller like http://site/othercontroller/testtwo, the Testlink are linked to ...

Is there more I can do with ASP:AdRotator NavigateUrl than just a standard link?

I currently have a simple implementation of an AdRotator: <asp:AdRotator ID="EHR_Banner" target="_blank" AdvertisementFile="img/banners/ads/ehr.xml" Runat="server" CssClass="adRotator" OnAdCreated="AdCreated_Event" /> On the site that it resides I have a third-party 'pop-up' window script, GreyBox. I use it to disp...

JavaScript: toggle links active/deactive

How do I toggle HTML links from being active / deactive using JavaScript? Within my HTML, I have 2 hyper links that call a JavaScript function to sort a table: <a href="javascript:sort('asc');">ASC</a> | <a href="javascript:sort('desc');">DESC</a> What I would like to do is when someone clicks the "ASC" link, it then deactives the "A...

Hyperlink in Cocoa

I am developing a Mac application in XCode. I need to add a hyperlink which navigates to a particular site. I tried this using a button, but I need to know how to change the cursor to hand cursor when mouse is over that button. ...

Sharepoint: Image field with a link

Hi All, I would like to add a field to a list with displays an Image, but acts as a hyperlink. In other words like the "Hyperlink or Picture" column, but "Hyperlink AND Picture" instead. Where the two fields you input would be the URL to the image to display, and the URL of the hyperlink. This must be possible. I notice that the Type...

A link isn't working in IE6

I'm working on the following page: http://jlecologia.com/index.php I want the whole block at the left to be clickable. In Firefox it's fine, but in IE6 the cursor doesn't even change to a hand. Any ideas? ...

How can I generate this hash?

I'm new to programming (just started!) and have hit a wall recently. I am making a fansite for World of Warcraft, and I want to link to a popular site (wowhead.com). The following page shows what I'm trying to figure out: http://www.wowhead.com/?talent#ozxZ0xfcRMhuVurhstVhc0c From what I understand, the "ozxZ0xfcRMhuVurhstVhc0c" part of...

How do I open a popup window in ASP.Net with HyperLink control using external javascript file?

Using ASP.Net 2.0 a. On a parent ASPX page, after a HyperLink control is clicked, I need to open a (child) page in a popup window, as modal. b. Then when that popup window (child page) is closed, I need to get the selections from a datagrid on that popup window and refresh the parent page accordingly. c. I have open window javascript...

HTML popup window refering to its creator.

Supose I create a pop-up in home.html with something like: <a href="somepage.html" target="_new">link</a> How can I make a link IN somepage.html change the content of the browser window/tab that contained the original link (the windows that has home.html)? Can this be done by plain HTML? Or do I need JavaScript? ...