Posts

Showing posts from January, 2011

Featured Post

Inside AdSense AdSense Facts & Fictions Part VI: User-GeneratedContent

Image
Sent from BlackBerry® on Airtel From: Inside AdSense Team <inside-adsense@google.com> Sender: inside-adsense@googlegroups.com Date: Mon, 31 Jan 2011 10:16:44 -0800 (PST) To: <inside-adsense@googlegroups.com> ReplyTo: inside-adsense+owners@googlegroups.com Subject: [Inside AdSense] AdSense Facts & Fictions Part VI: User-Generated Content Fiction: I shouldn't be held responsible if users post content on my site or network that violates AdSense policies. Fact: You are responsible for ensuring that all of your content, including user-generated content such as forum posts, blog comments or outside feeds, is in compliance with AdSense policies on any page or site for which you've enabled AdSense ads. As we've discussed in previous posts in this series , we regularly review the content in the AdSense network to ensure that it's safe for advertisers, users, and publishers, as network quality is of premium importance. Just as you, our publishers, expec...

Create a context menu using java script

Guys Today I am going to discuss about Creating context menu using java script Here is code sample function createDiv(e){ var scrollTop=document.body.scrollTop?document.body.scrollTop:document.documentElement.scrollTop; var scrollLeft=document.body.scrollLeft?document.body.scrollLeft:document.documentElement.scrollLeft; var d=document.createElement("div"); d.style.display="block"; d.style.position="absolute"; d.style.left=e.clientX+scrollLeft+"px"; d.style.top=e.clientY+scrollTop+"px"; d.innerHTML="Hey"+e.clientX+scrollLeft+"px"; var b=document.getElementsByTagName("body"); b[0].appendChild(d); } Pls give me comments Author Venkata sitaram p Sent from BlackBerry® on Airtel

JQUERY PLUG-IN PROCEDURE

Image
Today I am gonna discuss about the Jquery Plugins . How to write Jquery plugins Still you are wondering how to write JQuery Plugins you can go through JQuery website for Plugins http://docs.jquery.com/Plugins/Authoring Above documentation will be useful but I just want to make it Easy the plug in structure Plugin structure as followes Step1: () (jQuery) Step2 : (function($){ }) (jQuery) Step3: //You need an anonymous function to wrap around your function to avoid conflict (function($){ //Attach this new method to jQuery $.fn.extend({ //This is where you write your plugin's name pluginname: function() { //Iterate over the current set of matched elements return this.each(function() { //code to be inserted here }); } }); //pass jQuery to the function, //So that we will able to use any valid Javascript variable name //to ...

Kali thantra sadhana

Image
If you want. Learn mesmerism and tantra sadhana read this book This book has many ways to get the kundalini power Sent from BlackBerry® on Airtel

Maven net beans integration

Today I am going to discuss about maven net beans integration Prerequisite : ____________ Java understanding required Net beans ide usage required Maven download required Step1 : Go to window ->others maven repository. Here you can download artifacts Before that go to options set maven home and repository local Step 2 Open project type maven use ctrl+shift+N as short cut to do this Step 3 Select net beans dependency project Step 4 Give artifactid. Give proper name press ok Here maven will download all artifacts. If there is no connection time out error everything is fine Project will be opened Step5 Add maven targets from maven repository Build your project using maven. And deploy Thanks Sent from BlackBerry® on Airtel