Search this site
-
Recent Posts
Recent Comments
- kiranvj on Add custom picture and other details in System Properties tab
- Faisal Abbas on Add custom picture and other details in System Properties tab
- kiranvj on AS3 – Access root from a movie clip
- Abhilash on AS3 – Access root from a movie clip
- kiranvj on AS3 – Access root from a movie clip
- Abhilash on AS3 – Access root from a movie clip
- AuRoN on Implementing CAPTCHA using PHP
Categories
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
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
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