Forum: HTML and CSS Mar 27th, 2007 |
| Replies: 3 Views: 2,010 I don't think its possible to revert to the old function unless you save it somewhere.
eg:
String.prototype._substr = String.prototype.substr;
String.prototype.substr= function()
{ |
Forum: HTML and CSS Mar 24th, 2007 |
| Replies: 12 Views: 15,201 I don't think disabled works on an <img> as you have it. Why not just use javascript to check if you've disabled an image?
eg:
onclick="if(!this.disabled)sendAdd();" |
Forum: HTML and CSS Nov 18th, 2006 |
| Replies: 5 Views: 5,406 I think there is a typo there with position:fixed;
It should have been position:relative;
.wmp_wrap {
/* position relative allows you to */
/* absolutely position child elements */
/*... |
Forum: HTML and CSS Nov 15th, 2006 |
| Replies: 5 Views: 5,406 Heres an example of how you will achieve this...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html... |