PHP forums list PHP BB Vbulletin [no free] Ipboard [no free] Simple Machines BB press
Category Archives: Programming
markItUp! universal markup jQuery editor
markItUp! is a JavaScript plugin built on the jQuery library. It allows you to turn any textarea into a markup editor. Html, Textile, Wiki Syntax, Markdown, BBcode or even your own Markup system can be easily implemented.
Mysql Concat + Join fields
SELECT CONCAT(last_name,’, ‘,first_name) full_name FROM mytable ORDER BY full_name; [ad code=1]
jQuery UI MultiSelect Widget
This is the successor and port of my original jQuery MultiSelect Plugin to a jQuery UI widget. While both will actively be maintained, I highly recommend you use this version over the plugin version. It has a more robust feature set, is faster, and is much more flexible. MultiSelect turns an ordinary HTML select control …
jQuery Related (Dependent) Selects Plugin
I’ve finally gotten around to writing & releasing a jQuery plugin that allows you to create any number of related/dependent select boxes in a form. I’ve yet to find a decent solution and needed something that was fairly customizable and could retrieve data using AJAX/JSON, so here she is.
jQuery: modifying the submit button when a form is submitted
I’ve found it useful on certain apps to disabled the submit button once the form has been submitted to prevent the user from accidentally/deliberately clicking on it twice. There are two ways to accomplish this, and only one will work in IE. Can you guess which one?