Skip to main content

Posts

How TO - Redirect to Another Webpage Using Pure JavaScript

  How TO - Redirect to Another Webpage Using Pure JavaScript Source :-  https://www.w3schools.com/howto/howto_js_redirect_webpage.asp Learn how to redirect to another webpage using JavaScript. Redirect a Webpage There are a couple of ways to redirect to another webpage with JavaScript. The most popular ones are  location.href  and  location.replace : Example // Simulate a mouse click: window. location . href  =  "http://www.w3schools.com" ; // Simulate an HTTP redirect: window. location . replace ( "http://www.w3schools.com" ); Try it Yourself » Note:  The difference between href and replace, is that  replace()  removes the URL of the current document from the document history, meaning that it is not possible to use the "back" button to navigate back to the original document.

Flowplayer Integration : The HTML5 video player for the web

Flowplayer Integration : The HTML5 video player for the web For Integrating Flowplayer to your website/blogger/HTML you have to integrate the jQuery First then add the flowplayer js and css file to your webpage. Step 1 : Add CDNs B/W <head> Tag. <!-- player skin --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/flowplayer/7.2.7/skin/skin.css" /> <!-- for video tag based installs flowplayer depends on jQuery 1.7.2+ --> <script src="https://code.jquery.com/jquery-1.11.2.min.js"></script> <!-- include flowplayer --> <script src="https://cdnjs.cloudflare.com/ajax/libs/flowplayer/7.2.7/flowplayer.js"></script> Add Video Tag Where you want to put your video. <!-- player 1 --> <div class="flowplayer"> <video>

Setup/Add HTML Scripts ob Blogger | Install JS Games/ Viral Wishing Sites with mobile view | Switch to first Generation Theme | CXDI

Setup/Add HTML Scripts ob Blogger | Install JS Games/ Viral Wishing Sites with mobile view | Switch to first Generation Theme | CXDI

HTML5 Video Player - Clapper - An extensible media player Integration - 360 HTML5 Video Player Support

HTML5 Video Player - Clapper - An extensible media player Integration - 360 HTML5 Video Player Support Clapper :-  http://clappr.io/ | GitHub :-  https://github.com/clappr/clappr See Demos :-  https://sopplayer.sh20raj.repl.co/Clapper/  | Video Documentation :-  https://youtu.be/5qX7yG_7WDs Firstly Import the Clappr CDN in head tag <head> <script src="https://cdn.jsdelivr.net/npm/clappr@latest/dist/clappr.min.js"></script> <head/> Then Use the below codes to initialize your video player. <div id="player"></div> <script> var player = new Clappr.Player( { source:"https://commondatastorage.googleapis.com/gtv-videos-bucket/CastVideos/mp4/BigBuckBunny.mp4", parentId: "#player", poster:"https://i.pinimg.com/564x/f3/df/a6/f3dfa67d82133295a97731532fb625b0.jpg" }); </script>

Google Analytics + Best Alternative Woopra - Free plan is available

Pricing :-  https://www.woopra.com/pricing Woopra  provides website analytics based around touchpoints, such as interactions with live chat or user behavior after onboarding emails. The tool is set up to guide users through the customer journey via data-driven analytics. Pricing:  Free plan is available; Pro plans start at $999/month Rating:   4.2 out of 5 stars

Convert Google Spreadsheet into database - Free MySQL Database from Google Sheets - Papa Parse

Convert Google Spreadsheet into database - Free MySQL Database from Google Sheets - Papa Parse papaparse - Convert Google Spreadsheet into database This is a new method after tabletop.js :-  https://github.com/jsoma/tabletop  easy way to get your spreadsheet into a json format. Tabletop was created in about 1995, back when we had to remember to disable call waiting when dialing into CompuServe. Now that it's 2020, Google is shutting down the infrastructure that Tabletop relies on. Big surprise, right? But luckily, it's pretty easy to switch to a more modern way of doing things! Instead of Tabletop, we're going to use Papa Parse . You still need to share your spreadsheet and all of that (see below), but the changes are actually pretty tiny!  Firstly You have to import Papa Parse CDN :- <script src="https://cdnjs.cloudflare.com/ajax/libs/PapaParse/5.3.1/papaparse.min.js"></script> Then Use it as JavaScript

Remote Upload on Archive.org - Free Unlimited Cloud Storage - Direct Download

Remote Upload on Archive.org - Free Unlimited Cloud Storage - Direct Download To Upload your Remote File/URL or Archive.org for free go to  https://archive.org/web/  and enter your file url or website url whatever you want to save on archive.  Previous Video :-  File Examples :- Software, Big Size PC Games  👑   Setup,  Video/Audio/Apk/PDF Files for Download, Big Zip Files, Big Script/Code Compressed Format, etc... Whatever you want to store. Note :- You can Clone your whole Website/Blog also for that particular time period. You can Also Short Your Long URL then enter it because the url will also reflect on the new url. shortened url Click on Save this url Click on Save and Tick all the parameters to save and wait for the downloading process. Now, It will take some time to save your file/website to archive.org server. or Use this URL Direct :-  https://web.archive.org/save/  and right click and copy your video/files link (Direct Download) Some Special Stuffs that you ca

Google Drive proxy video player no limits - Embed drive videos ft. gdplayer.top

Google Drive proxy video player no limits - Embed drive videos ft. gdplayer.top Website :-  https://gdplayer.top/ Preview :- Sample Drive Video ->           https://drive.google.com/file/d/1ibx_QtJdEBVV3IKaO0WQbQ7CtMnDwpZW/view?usp=sharing Here you are getting many other features... JW Player A good control bar  Download Option (The download option may be a direct download link check the bit.ly link) Alternative Video Poster Subtitles Create Account and save your process Other Supported Sites... See Demo :-  Note :- We will not be responsible for the site downtime.

Upload Videos to YouTube from Video URL

Upload Videos to YouTube from Video URL Firstly Make a Copy of the Script. (Google Script ) Then You will be able to edit and Upload Videos to YouTube from Video URL. Script Link :-  https://script.google.com/home/projects/1wchC88n7J5MXd59597-XL6B_gdmXnxDKLmrM9xyjNbzJ7BKqGk3MDLvO/ Upload Videos to YouTube from Video URL

Add Preloaders to Your Website or Blogger Using SopLoader

Add Preloaders to Your Website or Blogger Using SopLoader SopLoader :-  https://soploader.sh20raj.repl.co/

Pass parameters to a Script tag - Get Parameters of Current Script Tag Src

Pass parameters to a Script tag - Get Parameters of Current Script Tag Src Let This is Script Tag in your main html and you have to get the value of id parameter in script.js  or Get Parameters of Current Script Tag Src or Pass parameters to a Script tag See an Example Below - //Script Tag in Main HTML (i.e. index.html) <script src="script.js?id=WqoYv89"></script> Here is Content of script.js //Content of Script.js let params = new URL(document.currentScript.src); params = params.searchParams; console.log(params.get('id')); Result on Console :-    WqoYv89 About UrlSearchParams :-  https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams/get About Document.currentScript :-  https://developer.mozilla.org/en-US/docs/Web/API/Document/currentScript google tag manager,how to get a variable from another script javascript,script tag,how to access a variable from another html script,script tag api,where should th

Upload your GitHub Repo (Like Wordpress) to FTP Server or AWS ft. deployhq.com

Upload your GitHub Repo (Like Wordpress) to FTP Server or AWS ft. deployhq.com Deployhq.com :-  https://sh20raj.deployhq.com/ Some Popular GitHub Repos :- Wordpress :-  https://github.com/SH20RAJ/WordPress More Coming Soon... Try it on a free hosting :-  https://app.infinityfree.net/

Free Php Hosting on Heroku and free remote MySQL database Using remotemysql.com

Free Php Hosting on Heroku and free remote MySQL database Using remotemysql.com URL :-  https://heroku.com/ See Limits :-  heroku free bandwidth limit - 2TB per App per Month Google-> heroku free storage limit - hobby(512mb) Google-> Free remote MySQL database Using remotemysql.com You can also take database hosting or connection from heroku addon oc clearDB. But there you have to give your credit card details and verify your account on Heroku. So we are Using third party website. Why Choose Us We're free. - Instant activation. - Free 100MB database size. - phpMyAdmin - No query limits. - Unlimited bandwidth. - Suitable for testing/develoment use only. Some Links :-  Sample Drive to Web Repo - GitHub :-  https://github.com/SH20RAJ/drivetoweb2.0 Web PhpMyAdmin Panel :-  https://webphpmyadmin.com/ DriveToWeb App (Php) :-  https://drivetoweb.herokuapp.com/

Upload More than 100 files on GitHub - Drag and drop of a folder with more than 100 files

 Upload More than 100 files on GitHub - Drag and drop of a folder with more than 100 files

Mastering Markdown - how to write a GitHub markdown

 //Source :-  https://guides.github.com/features/mastering-markdown/ Mastering Markdown  3 minute read   Download PDF version Markdown is a lightweight and easy-to-use syntax for styling all forms of writing on the GitHub platform. What you will learn: How the Markdown format makes styled collaborative editing easy How Markdown differs from traditional formatting approaches How to use Markdown to format text How to leverage GitHub’s automatic Markdown rendering How to apply GitHub’s unique Markdown extensions What is Markdown? Markdown  is a way to style text on the web. You control the display of the document; formatting words as bold or italic, adding images, and creating lists are just a few of the things we can do with Markdown. Mostly, Markdown is just regular text with a few non-alphabetic characters thrown in, like  #  or  * . You can use Markdown most places around GitHub: Gists Comments in Issues and Pull Requests Files with the  .md  or  .markdown  extension For more informat

Random Posts