Related Articles
Linux Commands with Action
Type “Info” to get the list on the linux terminal. Linux Commands with Action Linux Commands List * aclocal: (automake)Invoking aclocal. Generating aclocal.m4. * autoconf: (autoconf)autoconf Invocation. How to create configuration scripts * autoheader: (autoconf)autoheader Invocation. How to create configuration templates * autom4te: (autoconf)autom4te Invocation. […]
Free Online Web Conferencing Websites
Top web conference sites are undoubtedly Cisco Webex, GoToMeeting. But both need to download soft wares whenever you have a meeting. OK that’s not important see below for the list of best online web conferencing websites/tools. Free Online Web Conferencing Websites 1. Cisco Webex http://www.webex.com/ 2. GoToMeeting http://www.gotomeeting.com/fec/ 3. Anymeeting http://www.anymeeting.com/ 4. Google Hangouts http://www.google.com/+/learnmore/hangouts/ 5. FuzeBox https://www.fuzebox.com/ 6. Join.me https://join.me/ […]
Open a Url onload of a Website or Pagee
You can able to load a webpage while accessing a particular Website using Javascript, see below for code. <script> function openWindow() { window.open(‘http://www.google.com‘,’a’,’height=300,width=600′); } </script> <body onload=”openWindow();”> </body>