Mioplanet Documentation Center
Resources and Help
HomeProductsMioScriptJavaScriptTechNotesPHP
   Home | MioScript | browser.ID.HTML.get.element.attribute SEARCH    

  Functions
browser.create
browser.createEx
browser.eventFrame
browser.fromPoint
browser.ID.cancel
browser.ID.copyTo.ID
browser.ID.download.current
browser.ID.download.max
browser.ID.execScript
browser.ID.get.status
browser.ID.get.URL
browser.ID.getSource
browser.ID.goBack
browser.ID.goForward
browser.ID.goHome
browser.ID.handle
browser.ID.height
browser.ID.HTML.fromPoint.attribute
browser.ID.HTML.fromPoint.tagName
browser.ID.HTML.get.background.color
browser.ID.HTML.get.element.attribute
browser.ID.HTML.get.element.content
browser.ID.HTML.get.element.list
browser.ID.HTML.get.title
browser.ID.HTML.set.background.color
browser.ID.HTML.set.element.content
browser.ID.HTML.set.link.color
browser.ID.HTML.set.title
browser.ID.isAvailable
browser.ID.left
browser.ID.manualMailTo
browser.ID.navigate
browser.ID.newWindow
browser.ID.offline
browser.ID.options.connection
browser.ID.options.general
browser.ID.parent
browser.ID.pos
browser.ID.print
browser.ID.print.pageSetup
browser.ID.property
browser.ID.refresh
browser.ID.repaint
browser.ID.rzBackColor
browser.ID.saveAs
browser.ID.scrollbar.visible
browser.ID.silent
browser.ID.stop
browser.ID.top
browser.ID.visible
browser.ID.width
browser.ID.zoom
browser.manualCommand

  Events
event.browser:beforeNavigate
event.browser:documentComplete
event.browser:download:begin
event.browser:download:complete
event.browser:download:progress
event.browser:manualMailTo
event.browser:mioCommand
event.browser:navigate:error
event.browser:navigatecomplete
event.browser:newWindow
event.browser:statusChange
event.browser:titleChange

  MioScript Reference
> Statements
app...
browser...
dialog...
disk...
draw...
extern...
filename...
keyboard...
menu...
mio...
mouse...
num...
path...
pushButton...
reg...
RS232...
sci...
screen...
shortcut...
sound...
str...
system...
time...
var...
window...

Function
browser.ID.HTML.get.element.attribute

Language: MioScript
Product: MioFactory


Syntax

browser.ID.HTML.get.element.attribute(TagName, AttributeName1, AttributeValue1, AttributeName2, AttributeValue2, Attribute)


Parameters

STRINGTagNameName of the tag (case sensitive)
STRINGAttributeName1Filter 1: name of an attribute (case sensitive)
STRINGAttributeValue1Filter 1: value of the specified attribute (case sensitive)
STRINGAttributeName2Optional.
Filter 2: name of an attribute (case sensitive)
STRINGAttributeValue2Optional.
Filter 2: value of the specified attribute (case sensitive)
STRINGAttributeName of the attribute to retrieve


Return value

Value of the attribute.



Description

The function search in the HTML document to find a tag with the specified name and attributes, and returns the value of the requested attribute.




MioScript Sample Code

// Retrieving the value of an input text field

 browser.&brId.HTML.get.element.attribute("INPUT", "ID", "myField", null, null, "value")