This is my recent psd to prototype work (xhtml + css + jquery interactions). Soulsight site was created by just pure html, css, and jquery, with no flash elements.
Tag Archives: jQuery
Quick way to get the form ID of any form element
Here’s a quick snippet to get the form ID from any form element.
$(this).parents(“form”).attr(‘id’);
Standard compliant CSS Min Width and Max Width for IE6
It’s not actually a pure CSS tricks/hacks, as we all know, IE6 doesn’t support CSS minimum and maximum width but we can achieve those properties to work using DOM manipulation.
I used jQuery library to make my DOM manipulation simple and easy.
First step, get the CSS min width and max width value defined in the CSS [...]