Posts

Showing posts with the label tags

VBA Webscrape not picking up elmenents; pick up frames/tables?

Image
VBA Webscrape not picking up elmenents; pick up frames/tables? Tried asking this question. Didn't get many answers. Can't install things onto my work computer. https://stackoverflow.com/questions/29805065/vba-webscrape-not-picking-up-elements Want to scrape a morningstar page into Excel with the code below. Problem is, it doesn't feed any real elements/data back. I actually just want the Dividend and cap gain distribution table really from that link I put into my_Page. This is usually easiest way, but an entire page scrape way, AND Excel-->Data-->From Web DON'T work. I've tried to use get elements by tag name and class before, but I failed at being able to do it in this case.This might be the way to go... Once again, just want that Dividend and Cap Gain distribution table. Not seeing any results in via the Debug.print Working code below, just need to parse into excel. Updated attempt below: Sub Macro1() Dim IE As New InternetExplorer IE.Visible = True ...

How to add nofollow and noindex in php code?

How to add nofollow and noindex in php code? This is my code, how can I add nofollow and noindex on social links? <?= wp_nav_menu([ 'menu' => 'social_links', 'menu_class' => 'social-links', 'container' => false, 'echo' => false, 'depth' => 1, 'items_wrap' => '<ul class="%2$s">%3$s</ul>', 'item_spacing' => 'discard', 'link_before' => '', 'link_after' => '', ]) . "n" ?> you may need to read stackoverflow.com/help/how-to-ask – Shihe Zhang Jun 29 at 9:52 sorry mate, i didnt have tim...