setTimeout() in javascript and trigger click event

const myTimeout = setTimeout(myGreeting, 5000); function myGreeting() { alert('hi'); } // using jquery setTimeout(function() { $('.gayabhoja').show(); }, 1500); <input type='button' name='osx' value='Demo' class='osx demo' runat="server" /> <script> $("document").ready(function () {…

0 Comments

Where and Limit Condition in php

The WHERE Clause is used to filter only those records that are fulfilled by a specific condition given by the user. in other words, the SQL WHERE clause is used to restrict…

0 Comments