python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
There is a problem in python web-scraping
I wrote a code to scrape datas from a site but there is a problem.
The site it is a news portal.
articleIndex = 0
for div in mainPage_soup.findAll('div', attrs={'class':'title'}):
...
Mester Bob
Votes: 0
Answers: 1
Should an <article> image go inside article's <header>?
Use case is a blog post:
<article> element is used inside <main>, to encase an article on a post page.
<header> is in use within <article>, containing <h1> title and met...
Robert Andrews
Votes: 0
Answers: 1
How to handle multiple delete buttons JS
I'm having trouble handling multiple buttons to delete items on a cart page. I read about parentNode, operators delete, remove but none seem to work. Here's the code.
HTML:
<section id="ca...
DA COSTA Marco
Votes: 0
Answers: 1
How to get line-breaks displayed while input in a textarea?
After several hours of research, I am still stucked and unable to solve my problem which is this one : get displayed the break line (enter button) input by the user in a textarea.
Indeed, I am trying ...
vip4rk
Votes: 0
Answers: 0