Hi, all,
I'm dealing with problem now. Considering such a page:
a.html
...
<script>
function a() {
alert("a");
}
</script>
<script src="b.js">
</script>
...
b.js
function b() {
alert("b");
}
I think the script executed in a.html is actually
function a() {
alert("a");
}
function b() {
alert("b");
}
Is there a way to get the source code like this?
BTW, I also found out that if
b.js is
function a() {
alert("b");
}
the javascript function in a.thml will be overrided.
and the javascript text will be
function a() {
alert("b");
}
for a.html rather than previous one.
So, the overrided problem should also be taken into account. Any
thoughts?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Firebug" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/firebug?hl=en
-~----------~----~----~----~------~----~------~--~---