Related Articles
How to write anchor link or Script for calling and Ping/IM for Skype
Add “skype:vivekanandch?call” to call, do it as a anchor link to call on skype. similarly to sms/im on skype use ‘skype:vivekanandch?sms’ You can even try by clicking on the below links. Call me on Skype Ping me on Skype See the below Scripts: Call me on Skype Ping me on Skype
Provisional headers are shown in Google Chrome Browser Debugger
Recently I worked on a PHP webservice project and I saw this Provisional headers are shown in Google chrome browser and Opera browser.I digged some research on Google and find out mixed responses and at last I got it fixed by removing window.print() in script. Check out all the fixed Provisional headers are shown answers […]
How to Set Iframe Height to 100%
Use below snippet to set height of an iframe to 100%, however we can also set width of ifram to 100% also. <iframe src=”http://domain.com” frameborder=”0″></iframe> iframe { display:block; width:100%; height:100vh; }