473,657 Members | 2,507 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

(another) infuriating IE bug

If anyone can provide an explanation and/or workaround for this bug in
IE I would be really grateful. Is this a known bug?:

******CODE***** **
<html>
<script type="text/javascript">
function mf(){return function(){aler t('succes!')}}
</script>
<body>

<form>
<span onclick="f1=mf( );alert(f1);set Timeout('f1()', 1);">in form</span>
</form>

<span onclick="f2=mf( );alert(f2);set Timeout('f2()', 1);">out of form</span>

</body>
</html>
***************

Thomas
thom [at] schristensen [.] com
Oct 13 '05 #1
9 1564
> "Thomas Christensen" <th**@schristen sen.com> wrote:
news:43******** *************** @dread12.news.t ele.dk....

If anyone can provide an explanation and/or workaround for this bug in
IE I would be really grateful. Is this a known bug?:

******CODE***** **
<html>
<script type="text/javascript">
function mf(){return function(){aler t('succes!')}}
</script>
<body>

<form>
<span onclick="f1=mf( );alert(f1);set Timeout('f1()', 1);">in form</span>
</form>

<span onclick="f2=mf( );alert(f2);set Timeout('f2()', 1);">out of
form</span>

</body>
</html>
***************

Thomas
thom [at] schristensen [.] com


<script type="text/javascript">
var f1;
var f2;
function mf(){return function(){aler t('succes!')}}
</script>

--
BootNic Thursday, October 13, 2005 2:13 PM

Every time I close the door on reality it comes in through the windows.
*Jennifer Unlimited*
Oct 13 '05 #2
Thanx! I kinda knew. But in my application I'll probably have to
hardcode the object-reference in the inline setTimeout... And handle
cancellations.. . But why this behaviour?!

BootNic wrote:
"Thomas Christensen" <th**@schristen sen.com> wrote:
news:43****** *************** **@dread12.news .tele.dk....

If anyone can provide an explanation and/or workaround for this bug in
IE I would be really grateful. Is this a known bug?:

******CODE*** ****
<html>
<script type="text/javascript">
function mf(){return function(){aler t('succes!')}}
</script>
<body>

<form>
<span onclick="f1=mf( );alert(f1);set Timeout('f1()', 1);">in form</span>
</form>

<span onclick="f2=mf( );alert(f2);set Timeout('f2()', 1);">out of
form</span>

</body>
</html>
************* **

Thomas
thom [at] schristensen [.] com

<script type="text/javascript">
var f1;
var f2;
function mf(){return function(){aler t('succes!')}}
</script>

Oct 13 '05 #3
On Thu, 13 Oct 2005 20:23:56 +0200, Thomas Christensen
<th**@schristen sen.com> wrote:
Thanx! I kinda knew. But in my application I'll probably have to
hardcode the object-reference in the inline setTimeout... And handle
cancellations. .. But why this behaviour?!


because setTimeout executes in the global scope, it doesn't execute in
the scope it's called in.

This is not an IE bug.

Jim.
Oct 13 '05 #4
Works fine in Mozilla. And it's only when enclosed in a <form></form> it
won't work in IE. So <form> is another scope than everything else in IE?
I suspected as much, but don't get it...

Sorry if I'm being daft, but I'm back to coding client stuff after a few
years... Thanks for your reply!

Jim Ley wrote:
On Thu, 13 Oct 2005 20:23:56 +0200, Thomas Christensen
<th**@schristen sen.com> wrote:

Thanx! I kinda knew. But in my application I'll probably have to
hardcode the object-reference in the inline setTimeout... And handle
cancellations ... But why this behaviour?!

because setTimeout executes in the global scope, it doesn't execute in
the scope it's called in.

This is not an IE bug.

Jim.

Oct 13 '05 #5
JRS: In article <43************ ***********@dre ad12.news.tele. dk>, dated
Thu, 13 Oct 2005 19:36:03, seen in news:comp.lang. javascript, Thomas
Christensen <th**@schristen sen.com> posted :
If anyone can provide an explanation and/or workaround for this bug in
IE I would be really grateful. Is this a known bug?:


The code does what it should do.

The bug is in your expectation of what it should do; but you have not
explained what that might be.

--
© John Stockton, Surrey, UK. ?@merlyn.demon. co.uk Turnpike v4.00 IE 4 ©
<URL:http://www.jibbering.c om/faq/> JL/RC: FAQ of news:comp.lang. javascript
<URL:http://www.merlyn.demo n.co.uk/js-index.htm> jscr maths, dates, sources.
<URL:http://www.merlyn.demo n.co.uk/> TP/BP/Delphi/jscr/&c, FAQ items, links.
Oct 14 '05 #6
Thomas Christensen wrote:
If anyone can provide an explanation and/or workaround for this bug in
IE I would be really grateful. Is this a known bug?:

******CODE***** **
<html>
<script type="text/javascript">
function mf(){return function(){aler t('succes!')}}
</script>
<body>

<form>
<span onclick="f1=mf( );alert(f1);set Timeout('f1()', 1);">in form</span>
</form>

<span onclick="f2=mf( );alert(f2);set Timeout('f2()', 1);">out of form</span>

</body>
</html>
***************

Solution. If you add the created function to an object in the global
scope it works fine. I still don't understand why IE make the
<form></form> it's own scope, but that's just me:

<script type="text/javascript">
function mf(){return function(){aler t('succes!')}}
</script>
<body>

<form>
<span onclick="mf.f1= mf();alert(mf.f 1);setTimeout(' mf.f1()',1);">i n
form</span>
</form>

<span onclick="mf.f2= mf();alert(mf.f 2);setTimeout(' mf.f2()',1);">o ut
of form</span>
Oct 15 '05 #7
Dr John Stockton wrote:
JRS: In article <43************ ***********@dre ad12.news.tele. dk>, dated
Thu, 13 Oct 2005 19:36:03, seen in news:comp.lang. javascript, Thomas
Christensen <th**@schristen sen.com> posted :

If anyone can provide an explanation and/or workaround for this bug in
IE I would be really grateful. Is this a known bug?:

The code does what it should do.

The bug is in your expectation of what it should do; but you have not
explained what that might be.

I don't think the code does what it should do. The setTimout can't see
f2 when enclosed in a form even though f2 is created inside the same
form. Maybe I don't understand the DOM, but I can't see why <form>
should be an individual scope when no other html-blocks is.

The code in it's actual implementation is used to hide a popup that is
dynamically created, but that's not the point. It's the scope-thing that
annoy me.
Oct 15 '05 #8
Thomas Christensen wrote:
If anyone can provide an explanation and/or workaround for
this bug in IE I would be really grateful.
I think this is a bug in IE, at least in ECMAScript terms it is a bug.
It might be argued that the functions created from the values of
intrinsic event attributes are in the realm of host objects and so can
exhibit any behaviour that the browser authors want them to. And it has
been demonstrated that the functions created from intrinsic even vales
have some extremely odd characteristics in their (apparently dynamic)
scope chain assignment.
Is this a known bug?:
I don't know about it being a 'known bug' as such, it is an area where
odd behaviour is expected on IE browsers.
******CODE***** **
<html>
<script type="text/javascript">
function mf(){return function(){aler t('succes!')}}
</script>
<body>

<form>
<span onclick="f1=mf( );alert(f1);set Timeout('f1()', 1);">in form</span>

<snip>

The question that I asked first is where is - f1 - in the scope chain.
Inserting - alert(f1) - prior to the assignment produces a - f1 is
undefined error - so f1 is not on the scope chain prior to its
assignment. Thus the assignment must add it as a property of some object
on the scope chain.

It is not a property of the global object else the - setTimeout - would
not error. But replacing the content of the existing - alert(f1) -
with:-

this.f1 // undefined - it is not a property of the SPAN element.
document.f1 // undefined - it is not a property of the document.
document.docume ntElement.f1 // undefined - it is not a property
// of the HTML element.
document.body.f 1 // undefined - it is not a property of the BODY
// element.
docuemnt.forms[0].f1 // undefined - it is not a property of the FORM.

- leaves only one apparent candidate from ECMAScript for the object to
which the property is added, and that is the Variable/Activation object
of the internally generated even handling function (the only object that
cannot actually be examined). However, this can be ruled out by
replacing the form with:-

<form>
<span onclick="f1=mf( );alert(f1);">i n form</span><br>
<span onclick="alert( f1);">second test</span>
</form>

- where clicking "in form" adds the property to some object and then
clicking "second test" alerts the function string. Thus whichever object
has had the property added it is not an object inside the execution
context of the first even handling function, else the second would not
be able to see the - f1 - property on its scope chain.

Now, we know that there is no - f1 - property on the scope chain prior
to the assignment, and we know that an unqualified identifier (- f1 - in
this case) would be resolved against the scope chain and if it did not
exist an internal Reference type with a null "Base" object would be
returned (ECMA 262 3rd edition; Section 10.1.4). And we know that the
ECMA 262 specified internal - PutValue - function will react to
instructions to assign to a Reference with a null "Base" object by using
the global object as the object on which to call the [[Put]] method
(ECMA 262 3rd Edition; section 8.7.2).

So the expected behaviour of the assignment - f1 = mf(); -, where an
'f1' property does not already exist on any object on the scope chain,
is to create a new property of the global object called 'f1' and assign
the value to that. But that is not what is happening.

The only reasonable explanation for the behaviour demonstrated is that
for functions created form intrinsic event handling attributes inside
forms a different 'global' object masks the real global object during
assignments, and subsequent retrievals. The addition of a second form:-

<form>
<span onclick="f1=mf( );alert(f1);">i n form</span><br>
</form>

<form>
<span onclick="alert( f1);">second test</span>
</form>

- demonstrates that this additional 'global' object is form-specific, as
clicking on 'second test' in the second form, after the use of 'in form'
in the first, again produces the - f1 is undefined - error.

In ECMAScript terms the behaviour demonstrated is incorrect, in an
actual environment, such as IE, and in relation to the behaviour of
host-provided objects, it is much more questionable whether this would
qualify as a bug or a feature. On the other hand, with IEs problems with
circular references having an additional and inaccessible 'global'
object in the system may be extremely problematic.

The possible "workaround "s (incidentally, last week I discovered that in
French there is no word for "workaround "; did they never workaround? Is
it really an alien concept?) may be to follow general programming advice
and not be in the business of trying to create global variables on the
fly, or using global variables where their use could be avoided. In this
case, modern browsers allow - setTimeout - to take a function reference
as its first argument instead of a string of code, so:-

onclick="setTim eout(mf(),1);"

- would get the job done without any need to assign a value to any
object's property. (That is not without its issues as even browsers as
recent as, at lest some early, Safari versions do not understand
function references in this context, though there is a workaround for
that also.)

Then there is the general advice that if you are going to be using
global variable they should all be _explicitly_ declared in the global
scope. Doing so in your example:-

<html>
<script type="text/javascript">
var f1, f2; /*<-- Declare f1 and f2 as global variables. */
function mf(){return function(){aler t('succes!')}}
</script>
<body>
<form>
<span onclick="f1=mf( );alert(f1);set Timeout('f1()', 1);">in form</span>
</form>
<span onclick="f2=mf( );alert(f2);set Timeout('f2()', 1);">out of form
</span>
</body>
</html>

- prevents the - setTimeout - in "in form" from erroring. As now when
the unqualified identifier - f1 - is referenced in the assignment the
internal Reference type that results has the global object explicitly
assigned to its "Base" property and so there is no ambiguity in which
object should have its [[Put]] method used for the assignment. The
assigned value ends up on the global object as initially expected.

This is the irony in asking if this is a 'known bug', because while I
had observed that the event handling functions IE generates form
intrinsic event attribute values have some extremely strange
characteristics (particularly if you start moving them around in the DOM
or executing them in the global scope) I had never observed this
particular behaviour. Because I habitually minimise the number of global
variables I use, and I explicitly declare those that I do use. Both in
accordance with what are widely held "Best Practices" in javascript
authoring, and both coincidentally acting to avoid provoking this issue.

There will be a strong tendency for individuals who know enough to
effectively analyse this problem to have also learnt (possibly the hard
way) to apply sufficient "Best Practices" to their code to never
encounter the issue themselves. You did the right thing in providing a
specific test-case that demonstrates the issue in isolation. Others
assert that they have issues but in never demonstrating them find their
clams being ignored as probably resulting from erroneous coding that can
only be fruitlessly guessed at, as it cannot be seen.

Richard.

Oct 16 '05 #9
Hi Richard

Thanx a lot for your thourough answer, which sums ups my suspections in
a way I couldn't hope to achieve.

My problem was that I needed to add a setTimout on a function with a
reference to the object (which was dynamically created) in which the
setTimout occurred. And I could not get

<span onclick="setTim out(mf(this),10 0)">

to work for obvious reasons. I now there are workarounds (incidentally
we don't really have a word for workaround in Danish either, so we use -
"workaround ") but I don't like workarounds, so...

As I posted earlier I solved the problem in a for me elegant way(?) by
adding the created fundctions to a pseudo namespace (a global function -
in this case the mf function). So:

mf.f1=mf(this); setTimeout('mf. f1()',100);

And that works fine. And better than declaring "f1" as a variable in the
global scope as I in the actual case didn't know how many
derived/created functions I would need.

Thanx
Thomas

Richard Cornford wrote:
Thomas Christensen wrote:
If anyone can provide an explanation and/or workaround for
this bug in IE I would be really grateful.

I think this is a bug in IE, at least in ECMAScript terms it is a bug.
It might be argued that the functions created from the values of
intrinsic event attributes are in the realm of host objects and so can
exhibit any behaviour that the browser authors want them to. And it has
been demonstrated that the functions created from intrinsic even vales
have some extremely odd characteristics in their (apparently dynamic)
scope chain assignment.

Is this a known bug?:

I don't know about it being a 'known bug' as such, it is an area where
odd behaviour is expected on IE browsers.

******CODE*** ****
<html>
<script type="text/javascript">
function mf(){return function(){aler t('succes!')}}
</script>
<body>

<form>
<span onclick="f1=mf( );alert(f1);set Timeout('f1()', 1);">in form</span>


<snip>

The question that I asked first is where is - f1 - in the scope chain.
Inserting - alert(f1) - prior to the assignment produces a - f1 is
undefined error - so f1 is not on the scope chain prior to its
assignment. Thus the assignment must add it as a property of some object
on the scope chain.

It is not a property of the global object else the - setTimeout - would
not error. But replacing the content of the existing - alert(f1) -
with:-

this.f1 // undefined - it is not a property of the SPAN element.
document.f1 // undefined - it is not a property of the document.
document.docume ntElement.f1 // undefined - it is not a property
// of the HTML element.
document.body.f 1 // undefined - it is not a property of the BODY
// element.
docuemnt.forms[0].f1 // undefined - it is not a property of the FORM.

- leaves only one apparent candidate from ECMAScript for the object to
which the property is added, and that is the Variable/Activation object
of the internally generated even handling function (the only object that
cannot actually be examined). However, this can be ruled out by
replacing the form with:-

<form>
<span onclick="f1=mf( );alert(f1);">i n form</span><br>
<span onclick="alert( f1);">second test</span>
</form>

- where clicking "in form" adds the property to some object and then
clicking "second test" alerts the function string. Thus whichever object
has had the property added it is not an object inside the execution
context of the first even handling function, else the second would not
be able to see the - f1 - property on its scope chain.

Now, we know that there is no - f1 - property on the scope chain prior
to the assignment, and we know that an unqualified identifier (- f1 - in
this case) would be resolved against the scope chain and if it did not
exist an internal Reference type with a null "Base" object would be
returned (ECMA 262 3rd edition; Section 10.1.4). And we know that the
ECMA 262 specified internal - PutValue - function will react to
instructions to assign to a Reference with a null "Base" object by using
the global object as the object on which to call the [[Put]] method
(ECMA 262 3rd Edition; section 8.7.2).

So the expected behaviour of the assignment - f1 = mf(); -, where an
'f1' property does not already exist on any object on the scope chain,
is to create a new property of the global object called 'f1' and assign
the value to that. But that is not what is happening.

The only reasonable explanation for the behaviour demonstrated is that
for functions created form intrinsic event handling attributes inside
forms a different 'global' object masks the real global object during
assignments, and subsequent retrievals. The addition of a second form:-

<form>
<span onclick="f1=mf( );alert(f1);">i n form</span><br>
</form>

<form>
<span onclick="alert( f1);">second test</span>
</form>

- demonstrates that this additional 'global' object is form-specific, as
clicking on 'second test' in the second form, after the use of 'in form'
in the first, again produces the - f1 is undefined - error.

In ECMAScript terms the behaviour demonstrated is incorrect, in an
actual environment, such as IE, and in relation to the behaviour of
host-provided objects, it is much more questionable whether this would
qualify as a bug or a feature. On the other hand, with IEs problems with
circular references having an additional and inaccessible 'global'
object in the system may be extremely problematic.

The possible "workaround "s (incidentally, last week I discovered that in
French there is no word for "workaround "; did they never workaround? Is
it really an alien concept?) may be to follow general programming advice
and not be in the business of trying to create global variables on the
fly, or using global variables where their use could be avoided. In this
case, modern browsers allow - setTimeout - to take a function reference
as its first argument instead of a string of code, so:-

onclick="setTim eout(mf(),1);"

- would get the job done without any need to assign a value to any
object's property. (That is not without its issues as even browsers as
recent as, at lest some early, Safari versions do not understand
function references in this context, though there is a workaround for
that also.)

Then there is the general advice that if you are going to be using
global variable they should all be _explicitly_ declared in the global
scope. Doing so in your example:-

<html>
<script type="text/javascript">
var f1, f2; /*<-- Declare f1 and f2 as global variables. */
function mf(){return function(){aler t('succes!')}}
</script>
<body>
<form>
<span onclick="f1=mf( );alert(f1);set Timeout('f1()', 1);">in form</span>
</form>
<span onclick="f2=mf( );alert(f2);set Timeout('f2()', 1);">out of form
</span>
</body>
</html>

- prevents the - setTimeout - in "in form" from erroring. As now when
the unqualified identifier - f1 - is referenced in the assignment the
internal Reference type that results has the global object explicitly
assigned to its "Base" property and so there is no ambiguity in which
object should have its [[Put]] method used for the assignment. The
assigned value ends up on the global object as initially expected.

This is the irony in asking if this is a 'known bug', because while I
had observed that the event handling functions IE generates form
intrinsic event attribute values have some extremely strange
characteristics (particularly if you start moving them around in the DOM
or executing them in the global scope) I had never observed this
particular behaviour. Because I habitually minimise the number of global
variables I use, and I explicitly declare those that I do use. Both in
accordance with what are widely held "Best Practices" in javascript
authoring, and both coincidentally acting to avoid provoking this issue.

There will be a strong tendency for individuals who know enough to
effectively analyse this problem to have also learnt (possibly the hard
way) to apply sufficient "Best Practices" to their code to never
encounter the issue themselves. You did the right thing in providing a
specific test-case that demonstrates the issue in isolation. Others
assert that they have issues but in never demonstrating them find their
clams being ignored as probably resulting from erroneous coding that can
only be fruitlessly guessed at, as it cannot be seen.

Richard.

Oct 16 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
5083
by: luu duong | last post by:
I know this is probably easy but here is the details. I have an asp page that is not inside a frameset. I want to post data to another asp page that is inside a frameset. So firstpage.asp has action="response.htm" target="results". response.htm... <HTML> <FRAMESET ROWS="50%,50%"> <FRAME SRC="header.asp" NAME="fTop"> <FRAME SRC="another.asp" NAME="results">
6
1837
by: anon | last post by:
Post Forwarding question...... For this control below, <asp:Button runat="server" PostTargetUrl="page2.aspx" /> The Attribute: PostTargetUrl="page2.aspx" Is this PostTargetUrl Attribute going to be available in the <a> and Html Controls as well as opposed to just the <asp:Button> control?
5
2678
by: Daniel Tan | last post by:
Are there anyway to copy rows of records from one query to another query and then hide the records in source query ? Pls advise. Thanks. Regards, Daniel
3
2462
by: Kathy Burke | last post by:
Hi, I'm tired, so this question may be silly. I have a fairly long sub procedure. Based on one condition, I load another sub with the following: If Session("GRN") = "complete" Then txtScan.Text = Session("SN") txtScan_TextChanged(sender, e) Session("GRN") = "" Exit Sub End If
3
2460
by: qwerty | last post by:
I´m new to ASP.Net. My workmate has some experience with it. He claimed that in ASP.Net working with frames is much simpler than it was ASP. I asked explanation but he couldn't give me such. (a button inside a-tag with attribute target isn't anything new relating ASP.Net, its same old HTML). He claimed that you could change another page´s controls´s property´s value from another frame by using this method: ' Page "Bottom"
17
7069
by: Rabbit | last post by:
Hi, On my 1st page, i have a function which gets a new ID value and need to transfer to another immediately. which I want to get in 2nd page using Request.form("txtID"), but doesn't work, the returned value is "" Anybody know how to set this value on 1st page properly, in order to let 2nd page catch it? I don't want to use querystring to pass this value!
16
4158
by: Mike | last post by:
Hi, I have a form with some controls, and a different class that needs to modify some control properties at run time. Hoy can I reference the from so I have access to its controls and therefore being able to modify its properties?
3
4385
by: Sin Jeong-hun | last post by:
It seems like the Protect() uses the Windows accout information to encrypt data. If I know the user name and the password, can I decrypt it on another PC? If it is not, how about the exported key? On Windows Vista, if file encryption is used, Windows suggests to back up the key. If I import the key on another PC, then can I decrypt a data protected by the Protect() method? Or it is impossible by any means?
7
1595
by: Clive Dixon | last post by:
Sometimes when I'm typing the literal 'null', Intellisense decides to automatically change it to 'Nullable'. Is there any way anyone knows of stopping it doing this, apart from disabling Intellisense altogether? It's driving me totally mad.
0
8392
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8305
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8825
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8503
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
4151
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4302
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2726
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1953
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1611
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.