Tag Archives: Web Development

VBScript : Find script execution time

Using the script below you can find how much time it took to execute your VBScript code. Dim startTime startTime = Now ‘execute your code here endTime = Now MsgBox("Time taken to execute code : " & DateDiff("s",startTime,endTime)&" seconds") You … Continue reading

Posted in VBScript | Tagged , | Leave a comment

Javascript : Find script execution time

Using the script below you can find how much time it took to execute your javascript code. var startDate = new Date(); // execute your tasks here var endDate = new Date(); var timeTaken = endDate.getTime() – startDate.getTime(); alert(‘Time take … Continue reading

Posted in JavaScript, Web development | Tagged , | 4 Comments

WordPress : How to remove page title only from a single page

Do this if you don’t want to show the page title on top of a page in wordpress. Method 1 : (will not work if you save the post in Visual editor mode) Add this style below the content in … Continue reading

Posted in CSS, Web development, Wordpress | Tagged , , | 12 Comments