CatchFree is a community driven website that makes it easy to discover and share the best free web apps and avoid those with hidden catches.
CatchFree
Tuesday, May 24, 2011
Sunday, May 15, 2011
HotScripts
Hot Scripts is the net's largest PHP, CGI, Perl, JavaScript and ASP script collection and resource web portal. Its an Internet directory that compiles and distributes Web programming-related resources, geared toward webmasters, developers and programmers looking for enhancing their Web sites and intranets with dynamic development tools.
Hotscripts
Hotscripts
Cross browser compatibility - Thoughts
Recently I accomplished a challenging opportunity to make IE6 legacy web application compatible for all modern browsers - Firefox, IE, Safari and Chrome.
Albeit, there were comprehensive rework on CSS, JavaScript, HTML, I wondered about quite a few facts.
Similarly you can get the width by replacing all Height with Width in above function.
Albeit, there were comprehensive rework on CSS, JavaScript, HTML, I wondered about quite a few facts.
- DOM Reserved key words: The variable location is owned by window in all browsers except IE. You can use that as a local variable :( . Same as the case of few DOM functions such as add, remove etc. Better you should have proper namespaces for all the Java Script functions you write anywhere. That way all we don't accidentally override any of WINDOW variables or DOM functions.
- FireFox >3.x does not allow controlling resize behavior of child windows. Noway to disable the resize of child window.
- String prototype method String.trim is not yet available in IE. Use of regular expression s.replace(/^\s+|\s+$/g,"") to trim the string is recommended.
- To provide hand over behavior with style, cursor:hand is IE specific. Use cursor:pointer
- The select box value can be set to empty only by setSelectedIndex = -1; directly settings the values as element.value="" does not work on FireFox
- Setting the value for check box through DOM API does not trigger the onclick event registered with the checkbox; the event should be manually triggered
- Accessing the parentElement is IE specific. Use parentNode instead.
- To set a class to a element through DOM API, use element.className = "className" instead of element.setAttribute("class", "className");
- While using IFRAMEs in a page, you can not use cascading style with respect to the parent level. You need to create a new Style hierarchy with the IFRAME onload event.
- To reset the window height and widths, following functions can be used to get the height and width of window. This is optimized across all browsers.
getDocumentHeight = function(){
var D = document;
return Math.max(D.body.scrollHeight,D.documentElement.scrollHeight,
D.body.offsetHeight,D.documentElement.offsetHeight,
D.body.clientHeight,D.documentElement.clientHeight);
}
Similarly you can get the width by replacing all Height with Width in above function.
Project Lombok
- Do you have lot of POJO in your project and need to write getters/setters?
- Do you want clean POJOs with default hashCode and Equals implementations?
- Do you expect a cleaner way to express your POJO?
Here is an attempt for all these expectations.
Project Lombok
Wednesday, May 4, 2011
Protect your email address with reCAPTCHA and Google mailhide
Many spammers crawl the web looking for email addresses. When they see an email address on a web page, they send spam to the address. Mailhide allows you to safely post your email address on the web. Mailhide takes an address such as jsmith@example.com and turns it into jsm...@example.com. In order to reveal the address, a user must click on the "..." and solve a reCAPTCHA. If you use the Mailhide version of your email address, spammers won't be able to find your real email address and you'll get less spam.
reCaptcha
More about mailhide
reCaptcha
More about mailhide
Tuesday, May 3, 2011
Subscribe to:
Posts (Atom)