hyperlink

How do I convert a column of text URLs into active hyperlinks in Excel?

这一生的挚爱 提交于 2019-12-17 17:23:54
问题 I have a column in excel, wherein I have all the website url values. My question is I want to turn the url values to active links. There are about 200 entries in that column with different urls in all cells. Is there a way I can create active hyperlinks to all the cells without writing a macro. 回答1: If you don't want to make a macro and as long as you don't mind an additional column, then just create a new column alongside your column of URLs. In the new column type in the formula =HYPERLINK

Image link on iPhone is not clickable

心不动则不痛 提交于 2019-12-17 16:34:11
问题 I have a signature that is used in outlook. The signature has an image at the bottom and a link that encompasses the image. On the computers you are able to click on the image and taken to the link while on the iPhone it asks you to save image, or copy or cancel. On occasion I have noticed it to work but have not been able to determine when it does link and when it asks to copy the image. The code is the relevant code for the image/link <table> <tr> <td> <span style="font-size: 10pt; font

div inside anchor

删除回忆录丶 提交于 2019-12-17 16:28:21
问题 This doesn't happen all the time. A bug is not a bug if cannot be reproduced! First, I thought this was a mistake of my young programming skills but same error appears in my two sites, apparently under the same circumstances. <a style="display:block;" href="link"> <div>text1</div> <div>text2</div> </a> Sometimes, while browsing, links with div s inside them render strangely, duplicate elements appear on the page with no reason, text gets distributed between different links, a real mess. Real

How to create an anchor and redirect to this specific anchor in Ruby on Rails

丶灬走出姿态 提交于 2019-12-17 16:01:32
问题 I'm trying to create unique anchors for every comment on my blog so a person can take the url of an anchor and paste it in their browser, which will automatically load the page and scroll down to the point in the page where their comment starts. Perhaps I'm going about this the wrong way but I've tried this which was to no avail. Comment view - Fail 1 - when pasted in a browser this link does not scroll down to the desired position <%= link_to '#', :controller => 'posts', :action => 'show',

How do I open links in Visual Studio in my web browser and not in Visual Studio?

╄→гoц情女王★ 提交于 2019-12-17 15:35:14
问题 If there is a URL in a source file comment, I can "CTRL + click to follow link." However, when I do this, the link opens inside Visual Studio. How can I make it open in my web browser--in my case, Google Chrome? 回答1: There is an extension that provides this behavior called Open in External Browser. It works in Visual Studio 2012, 2013, 2015 and 2017. (An old version available on GitHub supports Visual Studio 2010.) Thanks goes to Dmitry for pointing this out in his answer to this similar

HTML: How to get my subpages listed on a google search

不羁的心 提交于 2019-12-17 15:25:08
问题 When you go to Google and perform a search, it will return either one of two type of results: just the title of your webpage, or the title of your web-page plus , lists subpages it found on that web site Here is an example of option #2: http://37assets.s3.amazonaws.com/svn/grub-ellis-googlelisting.png My website on a google.com search only lists my web page title (option #1), how do I get google to list my subpages on the search results (option #2)? Is is an HTML issue? How do I get Google to

Is there any way to have WebView auto-link URLs and phone numbers in Android?

◇◆丶佛笑我妖孽 提交于 2019-12-17 12:30:32
问题 If a page has a URL or a phone number on it that isn't a link is there any way to have WebView recognize it and automatically turn it into a link like you can with TextViews? With a TextView you would simply set the android:autoLink to the desired settings: <TextView android:autoLink="web|phone" ... /> but I can't find any equivalent for WebView . 回答1: I don't know about any way which would make this work just by changing a setting, but a workaround would be to wait until the web page

Preg_match_all <a href

孤街浪徒 提交于 2019-12-17 10:09:10
问题 Hello i want to extract links <a href="/portal/clients/show/entityId/2121" > and i want a regex which givs me /portal/clients/show/entityId/2121 the number at last 2121 is in other links different any idea? 回答1: Regex for parsing links is something like this: '/<a\s+(?:[^"'>]+|"[^"]*"|'[^']*')*href=("[^"]+"|'[^']+'|[^<>\s]+)/i' Given how horrible that is, I would recommend using Simple HTML Dom for getting the links at least. You could then check links using some very basic regex on the link

Running VBA from a HYPERLINK()

拈花ヽ惹草 提交于 2019-12-17 09:56:29
问题 I'm trying to let my users send email easily from their Excel spreadsheets, which they like to use as front-ends for data entry and manipulation. My intention is to write a function: generateEmail(name, manager, cc) and make it so the function can be invoked as-pleased by the user. In this, Excel calls Outlook, creates a new mail, and dumps the text containing the formatted email to send, which will contain some values changing dynamically per-line from the table they are currently working on

How do I dynamically enable/disable links with jQuery?

天大地大妈咪最大 提交于 2019-12-17 09:19:08
问题 I have some links displayed on a page. I would like to enable/disable them based on other events on the page. Is there a way to do this with jQuery? 回答1: $('selector_for_links_to_disable').bind('click', function(e){ e.preventDefault(); }) and for enabling: $('selector_for_links_to_enable').unbind('click') 回答2: You could do something like: $('.links').click(function(e){ if( [some conditions] ){ e.preventDefault(); } }); Be sure to show that they no longer work somehow, otherwise your users