Есть страница https://nuipogoda.ru/ ... как через javascript или через jquery отобразить с нее только div с id "pc"?
Пробую так: Code: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script> var div = $.get( "https://antichat.com/threads/483773/", function() { alert( "success" ); }) </script> </head> <body> <script> str = JSON.stringify(div); document.write(str); </script> </body> </html> Что не правильно?