WML Home
WML Tags Reference
Selected Reading
© 2011 TutorialsPoint.COM
|
WML <noop> Tag
The purpose of the <noop> task is to do nothing (no operation).
The only real use for this task is in connection with templates
Attributes:
This element supports the following attributes:
Attribute | Value | Description |
class | class data | Sets a class name for the element. |
id | element ID | A unique ID for the element. |
Example:
<?xml version="1.0"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.2//EN"
"http://www.wapforum.org/DTD/wml12.dtd">
<wml>
<card title="Noop Element">
<p>
<do type="prev" label="Back">
<noop/>
</do>
</p>
</card>
</wml>
|
|
|
|