13 Badges
- html5 Inventor
- div Inventor
- Devotee
- Returner
- Text Connoisseur
- JQuery Connoisseur
- Wordpress Connoisseur
- Tutor
- Helper
- Inquisitive
- Supporter
- Thanks
- Appreciated
Contributions
-

Is it Possible to Allow Someone to Upload an Image and Have them Edit it and/or Move it Around?
First off I would utilize png images (strictly). You'd have to make sure you can support 24 bit pings through a majority of modern browsers. You'd also need to store positions within a database and then store your images on the server. -
You can use the jQuery form plugin because it comes with great support for file uploads and after the file has completely been uploaded. -

When Working With a Print Style Sheet What's a Good Font to Apply?
It really just depends on the length, location of the text, and purpose. If you use a Serif font it'll be much easier to read then other families, but that's more for headlines then anything. -

How Can I Detect When the Height of a User's Page Changes?
Using JavaScript you can use the watch() method on the clientHeight property: Document.body.watch("clientHeight", function(property, oldHeight, newHeight) { // what you want to do when the height changes }); -

What's the Best Plugin for Dynamically Loading Images for WordPress?
This is possible with a jQuery plugin, the details can be found here. -

How Can I Vertically Align a Table Using CSS?
With: Table { position: Absolute; top: 50%; margin-top: -50%; } and… html { height: 100%; } -

-

What's a Good Ajax File Manager for Browsers?
I've used the CKFinder before. It's a pretty solid application for handling Ajax files. -

Does Anyone Have Code that Works to Create Sticky Fields in a Form?
$name = $_POST['name']; $gender = $_POST['gender']; $howlong = $_POST['howlong']; **************** function sticky($field) { if(isset($field)) return $field; } function stickyradio($name,$value) { if ($name == $value) { return ' checked="checked" '; } } function stickymenu($name,$value) { if ($name == $value) { return ' selected="selected" '; } } *************** <input type="text" name="name" value="'.sticky($name).'" /> <input type="radio" name="gender"'.stickyradio($gender,'male').'value="male" /> <option value="1y"'.stickymenu($howlong,'1y').'>3 years</option>

