
How to make entire Div clickable in javascript
How to make entire Div clickable in javascript
In this session, we will try our hand at solving the "How to make entire Div clickable in javascript".
There are lots of method available to make a div clickable in Javascript. But here we have to get the link of anchor tag which is the inner element of div tag and redirect the user to the link using window.location.-
Make a div clickable using inner anchor tag with javascript
<!-- HTML --> <div class="myBox"> blah blah blah. <a href="http://google.com">link</a> </div> <!-- javascript --> <script> $(".myBox").click(function() { window.location = $(this).find("a").attr("href"); return false; }); </script>
You can make the entire div clickable using the value of href attribute of anchor tag which is child element of div.
If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.
Don't forget to share this article! Help us spread the word by clicking the share button below.
We appreciate your support and are committed to providing you valuable and informative content.
We are thankful for your never ending support.
Random Code Snippet Queries: Javascript
- Input type file styling
- How to get query string value in javascript
- How to remove duplicate values from array in javascript
- How to push string in an array in Javascript
- Check if value exists in array javascript
- How to Set data to localstorage in javascript
- Copy one array to another in javascript
- How to preview video before uploading in javascript
- How to get the length of a number in JavaScript
- How to show and hide placeholder text
- How to check file is an image in javascript using filename
- How to preview a word document in HTML using javascript
- Trim the leading and trailing comma from string in Javascript
- Cropper js with multiple images
- Uncaught SyntaxError: Identifier 'CODE' has already been declared
- Json stringify
- Short-circuits conditionals
- How to add a property to object with condition in javascript
- How to display an image in Javascript onclick
- Concat variable with string in javascript
- Generate 6 digit random number in javascript
- Javascript set timeout function with example code
- How to echo array in Javascript
- How to crop multiple images with cropper js
- How to add key/value pair to existing form data