Posts

Showing posts with the label Misc

Misc 02: Adding Code Snippet in Blogger

Image
Code Snippet in Blogger To add good looking code snippet on the blogger page just go to the http://hilite.me/ and convert your code as per your blogger theme. I am using the generated CSS on my blog. You can see the example by clicking here .

Misc 01: Open a New Browser Window or Tab

Open a New Browser Window To open a new browser window as a popup, the below code need to be placed within body tag of your HTML code. <a href="javascript:void(0);" target="popup" onclick="window.open('LINK_TO_PAGE','name','width=600,height=400')">Open page in new window</a> Open a New Browser Tab To open a new browser tab, the below code need to be placed within body tag of your HTML code. <a href="LINK_TO_PAGE" target="_blank">Open page in new tab</a> Try by YourSelf Open page in new window Open page in new tab