PDA

View Full Version : How to read the <script>example</script> from html ?


It's me
10-12-2007, 01:34 AM
the thing which is always written in maroon color in html

i want to read the <script> part

plz tell me.. how to read it if any software required plz tell me
i do hve coffeecup html editor.
plz help me..
In simple english::

the thing which is hidden in this braces <script>

what script is written i want to know
thanx donab but that is for .swf file i want it for html file.. for example

}
//--></script>
<div class="listlight">
<div class="tripler ac oh">
<a href="/AlbumZoom.aspx?uid=18267658093937693412&pid=1"><img src="http://img4.orkut.com/images/milieu/1/1192075533/21939615.jpg" class="photothumb" ></a>
<br>
<a href="/AlbumZoom.aspx?uid=18267658093937693412&pid=1">Feliz Too<script>alert('I Want You')</script></a>

<p class="para nobot">
</p>
</div>
</div>
<div class="listdivi"></div>

specially this line c da 'script' written i want to read that of html not .swf dear :)

'href="/AlbumZoom.aspx?uid=18267658093937693412&pid=1">Feliz Too<script>alert('I Want You')</script></a>'

someone else plz help me..
:|

yes,.

i dont want to know what the script does i just want to know what is the main script like what is written in the script i want to read that.
Any readable format software or anything..
:)

thanx 4 ulls help..

others plz help guyz

Scott P
10-12-2007, 02:16 AM
If the <script>example</script> is in header section, the script language are defining "function" that can be called with in the Body tags <body>....</body>. If the <script>example</script> is in body tags, the script language is calling some functions already defined.

The section below is a Javascript calling write function to put the text on your Web page.

From your code:
Too<script>alert('I Want You')</script>
This put an message box with "I want you" in the message box.

<script type="text/javascript">
document.write("Hello World!")
</script>