Skip to main content

Posts

Showing posts from October, 2021

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

Random Posts