@saifulla
Nothing here yet.
Nothing here yet.
No blogs yet.
Dear Ibrahim, thank you for your response. For betting understanding my concern and requirement, kindly go through my codes below: page1: <!doctype html> <html> <head> <title></title> </head> <body> Page2 Image count:<span id="newcount"></span> </body> </html> page2: <!doctype html> <html> <head> <title>images count</title> <script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.2.1.min.js"></script> <script> $(document).ready(function(){ $("#count").html($(".galery img").length); }); </script> </head> <body> <div id="box"> <p style="padding: 20px;">Images Count:<span id="count"></span></p> </div> <div class="galery"> <img src="download.png"> <img src="download.png"> <img src="download.png"> <img src="download.png"> </div> </body> </html> Now i want the count of images in page2 need to be display in page1. Kindly help me out in this issue. thank you.