Posts tagged tools
High Quality Free Fonts collection For Modern And Cool Design
3I am big fan of typography myself and was surprised I haven’t done any good font collection yet! While doing research I was amazed how many really high quality fonts are available for free. And now with Sifr and similar tools you can use any font in your web-design actually, but if you are graphic designer you get even bigger enjoyment through such detailed and beautiful fonts. Balance between readability, elegance and use fonts with artistic approach to get best out of them, really that’s all you need to do. And by the way I am thinking about inspiring and effective typography article in soon future to show you very best examples – stay with us – get inspired and save your time because research has been done already for you!
Top jQuery Tips for Beginners
0Hot Tip #1: Access Elements by Javascript Array Indexing
Application of a selector creates a Javascript array which can be used for accessing DOM elements with array index easily.
For Example:
var element = $(“img”)[2];
will set the variable element to the second <img> element in the matched set of document’s all <img> elements.
Hot Tip #2: Create Union of Elements with Multiple Selectors
Union of multiple selectors can be created by listing selectors separated by commas ‘n a s’ngle call to $()
For Example:
$(“img,p”)
will match all <img> and <p> elements, while the following matches all <div> elements with a title attribute and all <img> elements with alt attributes.
$(“div[title],img[alt]“)
Hot Tip #3: Be Careful with not() and remove() methods!
.not() method removes elements from the matched set while the .remove() method removes the elements in the matched set from the HTML DOM.
jQuery Plugin for Form Validation – Ketchup!
0Ketchup is a simple jQuery plugin for form validation that allow you to validate user inputs on the client-side. It aims to be very flexible and extendable for its appearance and functionality. Although Ketchup is designed to be styled and extended by you it already looks tasty and gives you the most common validations by default.
It come with a ready to use pre-written basic validations, including: required, minlength(min), maxlength(max), rangelength(min, max), min(min), max(max), range(min, max), number, digits, email, URL, username, match(selector), date, minselect(min), maxselect(max), rangeslect(min, max) and many more..
It also provides some callbacks to completely control the markup and show/hide behavior of the error-container, which simply can be styled via CSS. Ketchup don’t force any markup on you. Build your own error-container, either with HTML code in a string or the element builder via the errorContainer parameter.
With Ketchup, User can combine validations More >
Rss to Email Te Free and Easy Way
0FeedBurner is probably the best option to start with for most blogs. It’s free and gets the basic job done. The only reason you might want to upgrade to FeedmailPro is the same reason people upgrade to Aweber: you might need some more advanced features.
Here are a few signs you might have outgrown FeedBurner:
1. If you want more flexible scheduling. The only option in FeedBurner is to send daily emails and this can overload your subscribers causing them to unsubscribe. With FeedmailPro you can schedule delivery to weekly or whatever you’d like.
2. If you want a “thank you” email to go out with a sign-up bonus or ebook after someone subscribes. Many bloggers use sign-up bonuses to increase readership and you can’t do this with FeedBurner.
3. If you want to send out the occasional email blast to your list that isn’t More >
Big collection of Regular Expressions Toolbox “regex”
2Regular expressions (â€regex’s†for short) are sets of symbols and syntactic elements used to match patterns of text and they are pretty powerful. Regular expressions have been around for a very long time (in computer industry scale) and was first introduced as part of the powerful UNIX search tool grep.
Setting Focus to an ASP.NET Control – Set Focus After PostBack – After Submit – on Page Load in ASP.NET 1.x
0Management of control focus is one of the common tasks when building web applications with effective and friendly user interface. In order to set focus on a certain control such as textboxes, buttons dropdowns after postback / after submit / on Page Load in ASP.NET 1.x, we can use a dynamic javascript block that facilitates Javascript’s focus() function.
private void SetFocus(String controlID) { // Build the JavaScript String System.Text.StringBuilder sb = new System.Text.StringBuilder(); sb.Append(“<script language=’javascript’>”); sb.Append(“document.getElementById(‘”); sb.Append(controlID); sb.Append(“‘).focus()”); sb.Append(“</script>”)
// Register the script code with the page. Page.RegisterStartupScript(“FocusScript”, sb.ToString()); }
For the above code, you need to pass the control’s id as the parameter, then define the Javascript function in a string variable then call the Page class to register the script.
Great Useful Portable Software & Application Collection
0Portable applications are handy when you are on move and can be run on most of the removable storage media like USB drive, mobile hard disk, iPod etc., Here in this article you will find extremely good 10 portable applications, that are very useful to carry with. If you are interested in application, just click through and you’ll get much more technical info and descriptions there. Hope this will be useful for some people!
jQuery Plugin – Form To Wizard
0If you have a large web form with semantically dividable sections, we can say that each section represents a sub task of a larger task of filling the entire web form. In order to increase useability, each sub task can become a step with a description, form fields and navigation that is common for wizard forms – back and next. The entire process can be done in several simple steps.
This plugin has only 2,3KB and with compression it can be even smaller. It is compatible with all major browsers: FireFox, Google Chrome, Safari, Opera, Internet Explorer 8, 7 and 6.
More details about the implementation and jQuery Plugin can be found here.
