Rare Solutions in SharePoint, C-sharp, ASP.Net, JQuery, SQL SERVER
You're new here, aren't you?
Click Connect with Facebook to join NetworkedBlogs. NetworkedBlogs is a community of bloggers and blog lovers. Join the fun, add your blog, and connect with others who read and write about subjects you like.
| Blog Name: |
Rare Solutions in SharePoint, C-sharp, ASP.Net, JQuery, SQL SERVER |
| Url: |
http://praveenbattula.blogspot.com |
| Language: |
English |
| Topics: |
SharePoint, JQuery, ASP.NET |
| Description: |
Rare solutions about Microsoft technologies like SharePoint, ASP.NET, C#, JQuery, TFS etc. |
| Popularity: |
26 Followers |
How to detect clicked on outside of a particular div?
This is the part of my work on java script. I need to detect in my code, whether I clicked on a particular div or out of a div. So, what is the best way? Get he user clicked position and compare them with div coordinates? No that's not a good solution. Then how we need to do? Below is the best way of implementing it. document.onclick = clickEvent; function clickEvent(e) { var targ; if (!e) var e = window.event; if (e.target) targ = e.target; else if (e.srcElement) targ = e.srcElement; //if (targ.nodeType == 3) // defeat Saf
How to detect tab key is pressed in javascript?
Recently I was working for a client and they needs plenty of functionality to be implemented in the javascript. And on the way of writing the code, I need to check whether user pressed on the tab key. When user on a particular div and hit the tab key then I need to do some logic. So, is there any event like tab clicked in javascript? NO… So,how to detect it. Below is the code I used for it. document.onkeydown = keydown; function keydown(event) { var code; var e; if (document.all) {
How to, Jquery DatePicker Enable, Disable, Remove, attach
After worked with Jquery and their related plug ins in the web applications thought of writing nice posts on rare findings. In some requirements we need to attach and remove the datepicker to a control or to a division. So, how to attach datepicker to a control or div dynamically… After read the jquery datepicker documentation, got to know the way to do that. The same case with Remove, enable, disable… So, below are the ways to do them. Attach: $(".datepicker").datepicker(); Remove: $(".datepicker").datepicker("destroy"); Enable: $(".dat
Download SharePoint 2010 BETA 2
It’s the time to download the latest version of SharePoint 2010 BETA2. I am downloading and will check whether they have made any changes to the BETA1. I faced so many problems in BETA 1 as it is not giving support to import user profiles from Active Directory. Will install it today and will let you know if I find anything interesting. http://www.microsoft.com/downloads/details.aspx?FamilyID=3ed6e43b-22da-4021-8e90-56e47536d772&Displ
Download Sql Server 2008 R2 November CTP
Get the new version of Sql Server 2008 R2 edition and play with it. It is more enhanced version of the Sql server 2008. Just downloaded and found some options are nice. Try it out and enjoy the new features.http://www.microsoft.com/sqlserver/2008/en/us/R2Downloads.aspx
- Sanjay's Blogs
Sharepoint, .Net, Other Technical stuff
- Google Rocks With JQuery
google, JQuery, web development
- Mark Rhodes on Hosting
Sharepoint, CRM, Hosting
- Tony Bierman [MVP WSS]
wss, programming, sharepoint
- ASP.NET Articles C# Articles
asp.net, Programming, csharp
Questions? contact: networkedblogs@ninua.com
Copyright (C) 2008, Ninua, Inc.