| 1 |
<?php |
| 2 |
class Element_Textbox extends Element { |
| 3 |
protected $attributes = array("type" => "text", "class" => "pfbc-textbox"); |
| 4 |
|
| 5 |
public function jQueryDocumentReady() { |
| 6 |
echo 'jQuery("#', $this->attributes["id"], '").outerWidth(jQuery("#', $this->attributes["id"], '").width());'; |
| 7 |
} |
| 8 |
} |
| 9 |
|