Available for download: Zend Framework 1.6 Release Candidate

Filed Under (General) by Wenbert on 23-07-2008

Tagged Under :

A *new* version of Zend Framework is now available. It should be safe to use for personal projects.

It’s good to see the Figlet available - I think DaSPiDs from #zftalk made this :P. Other stuff like the CLI and Captcha stuff are great additions.

Click here for the article.

jQuery: How to handle radio buttons

Filed Under (General) by Wenbert on 03-07-2008

Tagged Under : ,

Here is a quick tutorial on how to handle radion buttons using jQuery.

< input type="radio" name="empType" value="regular" /> Regular
< input type="radio" name="empType" value="temporary" /> Temporary

Then the jQuery code: (assuming that you have already included the JS file in the header…)

 $("input[@name='empType']").change(
        function() {
            if ($("input[@name='empType']:checked").val()) {
                alert($("input[@name='empType']:checked").val());
            }
        }
    );
Subscribe to Rss Feed : Rss