C# XML Documentation Website Link

Is it possible to include a link to a website in the XML documentation? For example, my method’s summarized as ///<Summary> /// This is a math function I found HERE. ///</Summary> public void SomeMathThing(Double[] doubleArray) { … } and when I type SomeMathThing( I want IntelliSense to show the summary with the option to click … Read more

Link to reload current page

Is it possible to have a normal link pointing to the current location? I have currently found 2 solutions, but one of them includes JavaScript and in the other you have to know the absolute path to the page: <a href=”#” onclick=”window.location.reload(true);”>1</a> <a href=”http://stackoverflow.com/foobar/”>2</a> <a href=”#”>3 (of course not working)</a> Is there any way of … Read more

How can I make a clickable link in an NSAttributedString?

It’s trivial to make hyperlinks clickable in a UITextView. You just set the “detect links” checkbox on the view in IB, and it detects HTTP links and turns them into hyperlinks. However, that still means that what the user sees is the “raw” link. RTF files and HTML both allow you to set up a … Read more

How to create hyperlink to call phone number on mobile devices?

What is the proper, universal format for creating a clickable hyperlink for users on mobile devices to call a phone number? Area code with dashes <a href=”https://stackoverflow.com/questions/13662175/tel:555-555-1212″>555-555-1212</a> Area code with no dashes <a href=”https://stackoverflow.com/questions/13662175/tel:5555551212″>555-555-1212</a> Area code with dashes and 1 <a href=”https://stackoverflow.com/questions/13662175/tel:1-555-555-1212″>555-555-1212</a> Area code with no dashes and 1 <a href=”https://stackoverflow.com/questions/13662175/tel:15555551212″>555-555-1212</a> Area code with dashes, … Read more

How can I get the Google cache age of any URL or web page? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for Stack Overflow. Closed 4 years ago. Improve this question In my project I need the Google cache age to be added as important information. I tried to search … Read more

Create tap-able “links” in the NSAttributedString of a UILabel?

I have been searching this for hours but I’ve failed. I probably don’t even know what I should be looking for. Many applications have text and in this text are web hyperlinks in rounded rect. When I click them UIWebView opens. What puzzles me is that they often have custom links, for example if words … Read more

jQuery disable a link

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 … Read more