Object's object : Object « HTML « JavaScript DHTML

JavaScript DHTML
1. Ajax Layer
2. Data Type
3. Date Time
4. Development
5. Document
6. Dojo toolkit
7. Event
8. Event onMethod
9. Form Control
10. GUI Components
11. HTML
12. Javascript Collections
13. Javascript Objects
14. Language Basics
15. Node Operation
16. Object Oriented
17. Page Components
18. Security
19. Style Layout
20. Table
21. Utilities
22. Window Browser
Java
Open Source Icons Images
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorial
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
JavaScript DHTML » HTML » Object 
Object's object

    
<html>
<body>
<object id="myObject" 
        classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
        codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0"
        width="250" 
        height="230">
    <param name="movie" value="yourfile.swf">
    <param name="quality" value="high">
</object>
<script language="JavaScript">
    function function1() {
        var m = document.getElementById("myObject").object;
        alert(m);
    }
</script>
<input type="Button" id="myB" value='Ge"myObject" object property value' onClick="function1();">
</body>
</html>

    
      
      
Related examples in the same category
1. Object data
2. Object Block Formats 'Count'
3. Object declare
4. Object 'plugins page'
5. Object 'standBy' Example
6. Object Parameter type
7. Object Parameter value
8. Object Parameter value Type
9. Object code Type
10. 'codeBase' Example
11. 'classid' Example
w___w_w_.___j_av__a_2s_.c___o_m_ | |Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.