Skip to main content

Posts

Showing posts with the label JavaScript Projects

WebScrapperJS - Get Content/HTML of any website without being blocked by CORS even using JavaScript by WhollyAPI

WebScrapperJS WebScrapperJS - Get Content/HTML of any website without being blocked by CORS even using JavaScript by WhollyAPI Website :- https://sh20raj.github.io/WebScrapperJS/ GitHub | Repl.it | Dev.to Article Grab the CDN or Download the JavaScript File <script src= "https://cdn.jsdelivr.net/gh/SH20RAJ/WebScrapperJS/WebScrapper.min.js" ></script> Enter fullscreen mode Exit fullscreen mode To Get HTML/Text Content of Any Website WebScrapper.gethtml() or WebScrapper.get() var url = ' https://google.com/ ' ; var html = WebScrapper . gethtml ( url ); //html of the url will be stored in this variable console . log ( html ); Enter fullscreen mode Exit fullscreen mode WebScrapper.gethtml() or WebScrapper.get() both are similar. Intialise own WebScrapper with URL new scrapper() let MyWebScrapp

Gur Img :- Free Unlimited Image Hosting - Direct Link - Share Image Across Devices

Gurimg :- https://sh20raj.github.io/Gurimg/ Gur Img :- Free Unlimited Image Hosting - Direct Link - Share Image Across Devices Gurimg is a Simple Image uploading website. That uploads your images using imgur API and gives you a direct image link that you can use it in <img/> tag. And you will also get a sharing link that you can share your image (sharing buttons are on page). See Examples :- Website :- https://sh20raj.github.io/Gurimg/ Direct Link :- https://i.imgur.com/uyxmW0K.png Sharing Link :- https://gurimg.sh20raj.repl.co/image/?id=uyxmW0K Some Screenshots Gurimg - Home Image Uploaded Image Sharing Page Mobile View Source :- https://codexdindia.blogspot.com/2022/01/gurimg-free-unlimited-image-hosting-with-direct-link-and-sharing-link-2b1i.html Dev.to :- https://dev.to/sh20raj/gurimg-free-unlimited-image-hosting-direct-link-2b1i/

Creating QRCode Generator Using JavaScript ft. QRCode.js

   Creating QRCode Generator Using JavaScript ft. QRCode.js Add the QRCode Generator widget to your Blogger... <div style="text-align: center;"><iframe src="https://qrcodejs.sh20raj.repl.co/index.svg"></iframe></div> Copy the JavaSCript CDN :- <script src="https://cdn.jsdelivr.net/gh/davidshimjs/qrcodejs@master/qrcode.js"></script> Here is A Sample Code :- <div id="qrcode"></div> <script src="https://cdn.jsdelivr.net/gh/davidshimjs/qrcodejs@master/qrcode.js"></script> <script type="text/javascript"> var qrcode = new QRCode(document.getElementById("qrcode"), { text: "http://jindo.dev.naver.com/collie", width: 128, height: 128, colorDark : "#000", colorLight : "#fff", correctLevel : QRCode.CorrectLevel.H }); </script>

Random Posts