Enjoy Guys! and don’t forget to post your comments. � MyTricksTime.com
Search Results for: label/Google+
5 Ways For Your New Blog To Get Traffic
Enjoy Guys! and don’t forget to post your comments. � MyTricksTime.com
facebook friend adder
Facebook invites are useful to invite your friends to view your website or to like your new Facebook page, you will see friends invite almost everywhere in Facebook.
Facebook invites are useful but a sometimes a hard job if you have large number of friends like me, i have 2525 friends on Facebook and thus it was very difficult for me to invite friends one by one.
When i started learning JavaScript, i came to know that we can easily select all check boxes by making a small JavaScript command line.
But before we start, make sure you are using Google Chrome or Firefox, they are good and major browsers, so using them makes sure that it will not create any problems. I will explain it in step by step procedures.
- Open Google Chrome
- Now open any event etc. where you can invite your friends
- Now scroll down until all your friends appears in the box
- Press CTRL+SHIFT+J (for Chrome), CTRL+SHIFT+K (for FireFox)
- A window will open in bottom or top of the browser
- Paste this line of JavaScript code in the console
After pasting click enter, now wait for a minute and and when all friends are selected click on send, if you have large number of friends it may take about 1 – 2 minutes for successfully sending the invites .
Enjoy Guys! and don’t forget to post your comments. � MyTricksTime.com
Simplest JavaScript to Open Popup Window from Plain Text
Here is the simplest JavaScript for generating a pop up window:
// Popup window code
function newPopup(url) {
popupWindow = window.open(
url,'popUpWindow','height=500,width=500,left=10,top=10,resizable=yes,scrollbars=yes,toolbar=yes,menubar=no,
location=no,directories=no,status=yes')
}
<a href="JavaScript:newPopup('http://www.google.com');">Open a popup window
// Popup window code
function newPopup(url) {
popupWindow = window.open( url,'popUpWindow','height=300,width=500,left=10,top=10,resizable=yes,scrollbars=yes,toolbar=yes,menubar=no,location=no,directories=no,status=yes')
}
– Red are width and height of the popup window.
– Purple are the optional attributes (change to �no� to turn off those attributes).
– Blue is the actual link to be opened in the popup.
– Black (bold) is the text which is visible to user.
Automatically center your popup
var popupWindow = null;
function centeredPopup(url,winName,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height=' h ',width=' w ',top=' TopPosition ',left=' LeftPosition ',scrollbars=' scroll ',resizable'
popupWindow = window.open(url,winName,settings)
}
var popupWindow = null;
function centeredPopup(url,winName,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
popupWindow = window.open(url,winName,settings)
}
Centered Popup
– Red are width and height of the popup window respectively.
– Purple is the attribute for the scrollbars in the popup. (Change to �no� to disable scrollbars)
– Blue is the actual link to be opened in the popup.
– Black (bold) is the text which is visible to user.
Enjoy Guys! and don’t forget to post your comments. � MyTricksTime.com
How to Query Google Results Via Sms
Here are few Sample Queries
To Get the Meaning of a Word:
T0 Get Sports News
To Get Movies Shows
To Get Stock Updates
To Get Web Snippets
Note:-This service is free from Google but message & data rates may apply.
Enjoy Guys! and don’t forget to post your comments. � MyTricksTime.com