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
- How to switch between Dark Mode and Light Mode based on cookie in Javascript
- How to add a property to object with condition in javascript
- How to set href value of anchor tag in javascript
- Get hostname from URL in javascript
- Short-circuits conditionals
- How to crop multiple images with cropper js
- How to open modal after redirect
- ReferenceError: $ is not defined
- Uncaught SyntaxError: Identifier 'CODE' has already been declared
- Generate 6 digit random number in javascript
- How can I add a key/value pair to a JavaScript object
- Javascript to print Fibonacci series upto 15 Observations
- Input type file styling
- Trim the leading and trailing comma from string in Javascript
- Concat variable with string in javascript
- Deault order of record in datatable
- How to preview video before uploading in javascript
- How to validate empty space in textbox in Javascript
- Cropper js with multiple images
- How to validate input type file size in javascript
- How to Set data to localstorage in javascript
- Prism js horizontally overflowing its container
- How to add key/value pair to existing form data
- Get multiplication in javascript using array input
- Remove hostname from URL in javascript