php-article-extractor icon indicating copy to clipboard operation
php-article-extractor copied to clipboard

React applications do not work

Open crscheid opened this issue 7 years ago • 0 comments

The following URL did not work because it appears to be React application who's content is only loaded when the Javascript executes. This was found when researching #4

URL: https://www.bitcoinunlimited.info/faq

<!DOCTYPE html>
<html>
    <head>
        <title>Bitcoin Unlimited</title>
        <link rel="stylesheet" href="/components/bootstrap/dist/css/bootstrap.min.css">
        <link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700,600,800' rel='stylesheet' type='text/css'>
        <link rel="stylesheet" href="/css/main-orange.css">
        <link rel="icon" type="image/vnd.microsoft.icon" href="/img/favicon.ico">
    </head>
    <body>
        <div id='react-app'></div>
        <script src='/components/jquery/dist/jquery.min.js'></script>
        <script src='/components/bootstrap/dist/js/bootstrap.min.js'></script>
        <script src='/components/bxslider-4/dist/jquery.bxslider.min.js'></script>
        <script src='/components/marked/marked.min.js'></script>
        <script src='/js/sequence.min.js'></script>
        <script src='/bundle.js'></script>
    </body>
</html>

crscheid avatar Mar 14 '17 05:03 crscheid