Make Money

Freelance Jobs Freelance Jobs
Showing posts with label website. Show all posts
Showing posts with label website. Show all posts

20.12.11

How to remove or disable Blogger-clickTrap with Google Chrome in 5 minutes!

Delicious Digg StumbleUpon Reddit Subscribe to RSS Feed


Google Chrome is a wonderful internet browser and to experienced bloggers, Chrome is more than just a browser. It has powerful built-in features that can actually help bloggers not only tweak their Blogger templates but also totally design a new one from scratch!

Yes, seriously! Google Chrome can be an extremely powerful WYSIWYG (What You See Is What You Get) Blogger template editor to the hands of experts! Please do not ask me to show you how to do it with Google Chrome since it requires strong knowledge and understanding in Blogger data tags, XML, HTML, XHTML, CSS and of course client-side scripts such as JavaScript.

Today however, I’m going to reveal something that normally bugs bloggers that are using Blogger. It’s the mysterious phenomenon that happens only when bloggers are previewing their Blogger templates or blog posts with their internet browsers, after clicking upon the ‘Preview’ button from their Post or Template editor. The phenomenon completely disables the left-click button and bloggers that are using Blogger could not click (left-click, to be more exact) on links, buttons and etc.

The phenomenon seems to affect the ‘above the fold’ area. Once you scroll down or hit the ‘Pg Dn’ button, the phenomenon disappears for good!

What is causing the mysterious phenomenon?


It is caused by an HTML <div> tag that comes with a class attribute populated with ‘blogger-clickTrap’ value. An example is shown (marked in red) down below.

<div class="blogger-clickTrap" style="position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; z-index: 10; cursor: default; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: white; opacity: 0.01; background-position: initial initial; background-repeat: initial initial; ">
&nbsp;
</div>

Alright! Come and learn how to disable or remove it with Google Chrome in just 5 minutes!

How to remove or disable Blogger-clickTrap with Google Chrome in 5 minutes!


While you’re still previewing your Blogger template or blog post with Google Chrome, hit the right-click button and select ‘Inspect element’.



Take a look at the new window that just slid into view at the bottom of your screen. By default, selecting ‘Inspect element’ will put the Elements panel into plain view right away. As matter of fact, Google Chrome should have highlighted the HTML <div> tag that we want to remove since the last position of your cursor is right on top of it (blogger-clickTrap)! You can’t miss it! If you missed it somehow, search for that one HTML <div> tag that comes with a class attribute populated with ‘blogger-clickTrap’ value.



Select or highlight the target HTML <div> tag and hit your right-click button. Now you may select ‘Delete node’.



Tada! Congratulations! You have just removed the HTML <div> tag that has been bugging you for quite a while with Google Chrome! But please! Please do not tell Matt Cutts about this! If he got the wind of it, he will send your blog to the last SERP!

Just kidding, folks! :) Removing the HTML <div> tag that comes with a class attribute populated with ‘blogger-clickTrap’ value will not jeopardize your search engine rankings. It won’t affect your Blogger template at all since the HTML <div> tag is a temporary tag created by Blogger and it exists only when you are previewing your Blogger template or blog post online.

There you are! ‘Blogger-clickTrap’ removal with the assistance of Google Chrome in just 5 minutes! :)

How to solve Blogger’s jQuery conflicts with jQuery.noConflict in 5 minutes!

Delicious Digg StumbleUpon Reddit Subscribe to RSS Feed


When bloggers that are using Blogger have more than one JavaScript library (jQuery, MooTools etc) on their blogs, sometimes they get weird conflicts and sometimes they don’t if they are very lucky!

Yesterday however was not the lucky day for one of my visitors. She had stumbled upon my pure CSS-based emoticons for Blogger tutorial blog post and wanted to have those similar emoticons on her blog. She had perfectly followed my installation instructions but to her dismay, those pure CSS-based (made possible jQuery) emoticons failed to appear on her blog and she came back to me for some answers. Today, I’m going to provide some for her! :)



Why sometimes we get conflicts with our jQuery plug-ins?


Let me quote something from jquery.com:

The jQuery library, and virtually all of its plugins are constrained within the jQuery namespace. As a general rule, "global" objects are stored inside the jQuery namespace as well, so you shouldn't get a clash between jQuery and any other library (like Prototype, MooTools, or YUI).

That said, there is one caveat: By default, jQuery uses "$" as a shortcut for "jQuery"

Yes, the culprit that caused all those weird conflicts is indeed ‘$’!

Thankfully, such conflicts can easily be resolved by calling upon the jQuery.noConflict() method. Let me show you an example.

How to solve Blogger’s jQuery conflicts with jQuery.noConflict


In my pure CSS-based emoticons for Blogger tutorial blog post, the JavaScript code snippet that causes conflicts to one of my visitors is the one shown down below.

<script type='text/javascript'>
$(document).ready(function(){
$(&#39;.post-body, .comments&#39;).emoticonize({
//delay: 500,
//animate: true,
//exclude: &#39;pre, code, .no-emoticons&#39;
});
})
</script>

To solve the conflicts once and for all, just replace the whole code snippet shown earlier with the following down below.

<script>
var $j = jQuery.noConflict();
// Use jQuery via $j(…)
$j(document).ready(function(){
});
</script>

<script type='text/javascript'>
jQuery(document).ready(function(){
jQuery(&#39;.post-body, .comments&#39;).emoticonize({
//delay: 500,
//animate: true,
//exclude: &#39;, pre, code, .no-emoticons&#39;
});
})
</script>

Pay attention to those marked in red and green. The one marked in green is where we call upon the assistance of the jQuery.noConflict() method and it is must be placed right AFTER you call upon your JavaScript libraries (in your Blogger template) and BEFORE the code snippet that is causing the conflicts. The ones marked in red are where we replaced those conflict-making ‘$’(you would understand better after comparing the BEFORE and AFTER versions) with ‘jQuery’.

To my visitor that is having problems with her pure CSS-based emoticons jQuery plug-in, you may now save your Blogger template and enjoy your new emoticons. :)

Even though the examples shown earlier are to help one of my visitors solve conflicts that are caused by her pure CSS-based emoticons jQuery plug-in, the lesson that you have learned here today can also help you resolve conflicts created by other jQuery plug-ins. I strongly recommend bloggers that are fond of using JavaScript libraries (jQuery) on their blogs to read and master other noteworthy techniques that they can also use to resolve conflicts between their jQuery plug-ins and other JavaScript libraries.

18.12.11

4 General Methods You Can Use To Detect Phishing Attacks

Delicious Digg StumbleUpon Reddit Subscribe to RSS Feed


anti phishingThe internet is one of the best tools known to mankind to do basically whatever you want. But Facebook, Twitter, Gmail, Dropbox, Paypal, eBay, bank portals, and so many more sites have twins that are actually phish.



A “phish” is a term for a scam website that tries to look like a site that you know might well and visit often. The act of all these sites trying to steal your account information is called phishing. While it’s very easy to spot some sites as a phish, others aren’t nearly as easy.
Here are four different anti-phishing methods you can use so that you don’t fall victim to phishing.

1. Use a Custom DNS Service

anti phishing
You need a DNS resolution service so that you can access all the sites that you go to. Your computer doesn’t automatically know where Facebook is (as far as its Internet address, or IP address, goes), so it needs to ask a DNS resolution service for that IP address. The good thing is, all Internet users have this service, thanks to their internet service provider. The bad news is that’s all they do.
Aside from name resolution, the DNS servers at ISPs do nothing else. However, there are some custom and independent DNS companies that do more than just name resolution. They can also filter sites based on content and malware/phishing concerns. There are many out there that can do this, but the most popular one (last time I checked) is OpenDNS.


Cool Websites and Tools

Delicious Digg StumbleUpon Reddit Subscribe to RSS Feed


Snip.it – There are a few services that let you create a bundle of links easily. However, very few of them actually help you curate those links for future reference or for more intelligent sharing. Snip.it is a new tool that aims at getting that done. It’s in beta but you can sign up using Facebook. It helps you create link collections and share them with friends. 

Bing Deals – If you are an online shopper then you are always on the lookout for great online deals and offers. Here to help you stay updated with the best offers online is Microsoft’s Bing Deals, a free to use website by Microsoft. Using the Bing search engine, Bing Deals aggregates the best deals available online. 
SiteSimon – With an increasing number of websites, webpages, and blog posts, it is not easy to find online content that you will find interesting. Here to help you by letting the interesting content find you is a web service called SiteSimon, a web service that fetches online content based on your interests. Your interests are determined by your browsing history. 
MyOpenLetter – let you address anyone openly i.e. for all to read. If you have somebody you want to write an open letter to, then you should definitely check out a web service called MyOpenLetter. It is a free to use web service that lets you write open letters and publish them online. 
Ruck.us – It is clear that the war at the top of the social network pyramid is likely to be Facebook versus Google Plus or maybe them versus Twitter for the next few years. So people perhaps realize the futility of investing time and energy into building yet another all-in-one social site. Therefore niche social sites are the new thing and Ruck.us has just joined the league.

5.12.11

How To Get A Free Website,Domain Name(.in) And Hosting :(Google + Hostgator)

Delicious Digg StumbleUpon Reddit Subscribe to RSS Feed

Do you need a Free Website with Domain and  Hosting For Free ? Then here is a way for you and if you are an Indian this will be very helpful for you as the domain you are getting will be (.in)! There are billions of people living in India who are running their businesses on different scales like small-scale,medium-scale and large-scale. This article will be helpful to everyone who needs a free website for themselves. Having a website will always be helpful to expose yourself to the world market. By maintaining a website on the name of your Company or shop or any other businesses will possibly bring more number of
customers at your doorstep.India-Get-Online

Though there are billions of people run their own businesses it is observed that only about 4 lakh people are promoting their businesses online in India. So I think there no much competition at this time and you need to take a step to create a free website for yourself and Promote your business which will definately increase the chances of making bigger profits.Many of them take a back step in creating a website because they think it’s a costly thing which is beyond their expectations or it is some kind of magic that only a computer expert can do ! No, It isn’t what you think at all ! You need not have any computer expertise to run your own website, it is very easy and all you need to know will be available in the for tutorials on the web ! Study them carefully and you can definately make it possible !Your presence online will make a much difference and you will be seeing it from the day 1 with a gradual improvement.


(Keeping all your concerns in view)In association with Google,HostGator and ICICI Bank now there is a Website named www.IndiaGetOnline.in, where you can create your own website absolutely for free! The domain name as well as the web hosting service is also for free for a complete one year and then if you want to proceed ,you can make a decision to purchase it or not ! This is pretty much reasonable because people who are skeptic about running a website can give it a try for free! If you have to change or move your website to any other hosting service then you are allowed to do so !
This is surely a brilliant offer for everyone who is looking forward to setup a new website and expose their business to the world market. As this is initiated for the upgrowth of Indian Businesses you will have to need to verify your Permanent Account Number (PAN) or the Tax Deduction Account Number (TAN) when you are registering with the service and this will ensure that there are no spammers will take advantage of this offer!

Get Your Free Website,Domain and Hosting here - www.indiagetonline.in

4.12.11

Prevent or disable copy contents of your blog or site

Delicious Digg StumbleUpon Reddit Subscribe to RSS Feed


If you want to prevent users from copying contents of your blog or site than you need to put this code in ur blog so that user can not copy ur blog's contents , i was browsing through POP SONG LYRICS and got this script

Go to Layout and click on add new gadget > select Html/Javacsript

Now in the box copy and paste the following code


<script type="text/javascript">
var omitformtags=["input", "textarea", "select"]
omitformtags=omitformtags.join("|")
function disableselect(e){
if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
return false
}
function reEnable(){
return true
}
if (typeof document.onselectstart!="undefined")
document.onselectstart=new Function ("return false")
else{
document.onmousedown=disableselect
document.onmouseup=reEnable
}
</script>


Click on save and check whether u r able to copy or not .

Have fun

24.11.11

Cool Javascript Tricks: Edit Websites in Browser (Live)

Delicious Digg StumbleUpon Reddit Subscribe to RSS Feed

Imagine a world where you are a God and have ultimate control on what happens and more importantly, how it happens. Seems too good a dream. Now it has come true, at least for the online world.

javascript tricks
Using this trick, you will be able to edit any webpage live in your browser as if it was a Wiki and change the details according to your wish. Yes, you read that right. You can edit Google or even Facebook for that matter right in your browser and that too without requiring any technical know-how or getting deep into hacking and cracking.



How to Access Blocked Websites, View Restricted Sites

Delicious Digg StumbleUpon Reddit Subscribe to RSS Feed

ite by simply entering the URL in URL field. If you want additional security and anonymity, you can opt for a paid proxy server.

If you do not want to search, here are 4 popular free proxy websites you can use:-


Ways to Unblock Restricted Websites

Delicious Digg StumbleUpon Reddit Subscribe to RSS Feed

One way of accessing blocked websites is through the use of proxy websites. But it is not possible to use them to unblock each web site. If the website you wish to visit falls in this category, then you must use the methods given in this article. Beforehand, I would like to make it clear that different websites are blocked differently.

So you must try all of the tricks given before reaching the conclusion that you cannot access a website.Some of the tips given in this article can also be used to prevent your surfing and IP Address from being logged. So, let us begin:-

18.11.11

Top 8 SEO Tips for a Better Google Places Ranking

Delicious Digg StumbleUpon Reddit Subscribe to RSS Feed




s your Google Places page showing up at or near the top of local business listings in search results? If you answered no, then keep reading. Here are my top eight tips to improve your Google Places page’s chances of being found by local searchers:
1. Get Verified
The first step to get your Google Places listing on Google SERPs is to get it verified. This can be done through Phone SMS, Phone Call or through mail. Google will send you a pin code which you simply have to enter into your Google Places account.

Cool JavaScripts that you must Try on your WebBrowser!

Delicious Digg StumbleUpon Reddit Subscribe to RSS Feed

here’s i am sharing with you some cool pieces of codes that you must try on your browser. Interestingly the JavaScripts listed below can be used to perform malicious activity or to spread SPAM by just modifying them or combining with few extra code. for example we have already seen the “Rotating images Facebook Spam” some days back. So Guys Before trying out any JavaScripts on any Websites, you got to first examine the code properly and see that it is not calling any external Script or contains any malicious code.
All the JavaScripts listed below are 100% safe and tested. use of these java scripts will not harm your PC and will not affect your ongoing processes. Copy-paste any javascript in the Address bar of your Browser and hit ‘enter’. To Stop the JavaScript actions, Just Refresh the current Tab of your Browser.

Which Social Networking Sites Are Secure? – Top Social Networking Attacks

Delicious Digg StumbleUpon Reddit Subscribe to RSS Feed

No wonder Facebook has to top in this List. Despite so much criticism from social media websites on the basis of privacy & Security issues, Facebook Stands First. One quality that makes Facebook “the most Secure social Networking Website” is its ability to diligently strive to become better and Secure.
ZoneAlarm, a Anti virus company has released a nice Infographics that depicts the Top Secure social Networking Websites and has Also compiled the “top Social Networking Attacks”, We have already covered Most of them in our “Facebook Virus” archive.

Multiple login in yahoo Without Using any Software

Delicious Digg StumbleUpon Reddit Subscribe to RSS Feed



Without Using any Software

You can login with multiple id’s on the same yahoo messenger
without any download or patch . Follow these steps :


 

HOW TO HACK Copyright © 2010 LKart Theme is Designed by Lasantha