Oracle JavaScript Extension Toolkit (JET) empowers developers by providing a modular open source toolkit based on modern JavaScript, CSS3 and HTML5 design and development principles. Oracle JET is targeted at intermediate to advanced JavaScript developers working on client-side applications. It’s a collection of open source JavaScript libraries along with a set of Oracle contributed JavaScript […]

Read More →

Brendan Eich, co-founder of Mozilla and creator of the JavaScript programming language, has unveiled his latest project: Brave, a Web browser that blocks ads by default. Users also have the options of replace, block, or allow ads and tracking. Brave Software, the company behind the eponymous browser, will take a 15 percent cut of the […]

Read More →

In JavaScript timing events come in two flavors: setTimeout(function, milliseconds) Executes a function, after waiting a specified number of milliseconds. setInterval(function, milliseconds) Same as setTimeout(), but repeats the execution of the function continuously. Here is a code to implement setInterval code using setTimeout, also we have a method to clear the interval. 1 2 3 […]

Read More →

How many ways can we save some data on the browser(client) end and retrieve it back even after a refresh: We can use localstorage or sessionstorage Use cookies Rewrite URL(although not elegant, but still can get the job done) Appending/Prepending to the name attribute on the window object You can try opening up any webpage […]

Read More →