I have a functional REACT component, code is as follows
JavaScript
x
26
26
1
const MobileListing = (props) => {
2
3
function handleClick() {
4
console.log('in cardClick');
5
}
6
return (
7
<div>
8
<Row>
9
<Card onClick={() => handleClick()} style={{cursor : 'pointer'}} >
10
<Card.Img variant="top" src="holder.js/100px180" />
11
<Card.Body>
12
<Card.Title>Card Title</Card.Title>
13
<Card.Text>
14
Some quick example text to build on the card title and make up the bulk of
15
the card's content.
16
</Card.Text>
17
<Button variant="primary">Go somewhere</Button>
18
</Card.Body>
19
</Card>
20
</Row>
21
</div>
22
);
23
}
24
25
export default MobileListing;
26
I want to make the entire card clickable. I read through a post on stack overflow Making whole card clickable in Reactstrap which talks about using an anchor tag, but that doesn’t work for me. Can someone help me understand what I am doing wrong?
A card looks like this on my site and I want to make the whole card clickable.
Advertisement
Answer
You can use the onClick
either on the top-level div
element for this, or, in case there would be more cards inside the Row
you can wrap each with a div
and give it the onClick
, property.
such like:
JavaScript
1
18
18
1
<div>
2
<Row>
3
<div onClick={handleClick}>
4
<Card style={{ width: '18rem', cursor : 'pointer' }} >
5
<Card.Img variant="top" src="holder.js/100px180" />
6
<Card.Body>
7
<Card.Title>Card Title</Card.Title>
8
<Card.Text>
9
Some quick example text to build on the card title and make up the bulk of
10
the card's content.
11
</Card.Text>
12
<Button variant="primary">Go somewhere</Button>
13
</Card.Body>
14
</Card>
15
</div>
16
</Row>
17
</div>
18