- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to adjust the height of iframe based on the loaded content using jQuery?
To adjust the height of iframe, use the jQuery height() method. You can try to run the following code to adjust height of iframe dynamically on button click:
Example
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $("iframe").height(300); }); }); </script> </head> <body> <iframe src="https://www.qries.com" style="height:150px;width:400px;border:2px solid gray;background-color:lightblue;"></iframe><br> <button>Change Height</button> </body> </html>
- Related Articles
- How can I set the content of an iframe without src using jQuery?
- How to get the value of div content using jQuery?
- How to replace the content of an element using jQuery?
- How to get the content of a textarea using jQuery?
- How to set the content of a textarea using jQuery?
- How to print div content using jQuery?
- How to get the body's content of an iframe in JavaScript?
- How to get the height of an element using jQuery?
- How to insert content after each of the matched elements using jQuery?
- How to prepend content to the inside of every matched element using jQuery?
- How to disable copy content function using jQuery?
- How to get the height of a div element using jQuery?
- How to get HTML content of an element using jQuery?
- How to set HTML content of an element using jQuery?
- How to specify the HTML content of the page to show in the <iframe> in HTML?

Advertisements