D
Dirk Einecke
Hi.
Is there a simple way to separate a HTML-tag in a hash?
Initial situation:
<input type="text" name="test" size="20" style="border: 1px; color: red;" />
What I need:
h["tagName"] -> "input"
h["type"] -> "text"
h["name"] -> "test"
h["size"] -> "20"
h["style"] -> "border: 1px; color: red;"
Any ideas or hints?
greetings
Dirk Einecke
Is there a simple way to separate a HTML-tag in a hash?
Initial situation:
<input type="text" name="test" size="20" style="border: 1px; color: red;" />
What I need:
h["tagName"] -> "input"
h["type"] -> "text"
h["name"] -> "test"
h["size"] -> "20"
h["style"] -> "border: 1px; color: red;"
Any ideas or hints?
greetings
Dirk Einecke