I am trying to fix the error that Firebug trows and that Windows Exploder throws that point to this bit of code
Here is the URL: http://teamworldtrump.com/
Sorry for the vagueness
Main Topics
Browse All Topics
I am getting these errors in Firebug and trying to clean this up...
el is null
214 <script type="text/javascript">var
document.getElementById("s
282document.getElementById
I am not sure how to solve this...thanks
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
I am trying to fix the error that Firebug trows and that Windows Exploder throws that point to this bit of code
Here is the URL: http://teamworldtrump.com/
Sorry for the vagueness
If your trying to "copy" this website code: http://www.cashbum-investm
I just want you to know that you forgot this line:
<INPUT id=custom_http_referer type=hidden name=custom_http_referer>
:)
custom_http_referer doesnt exist in your page. So:
214 <script type="text/javascript">var el=document.getElementById
this is telling you that custom_http_referer can't adquiere "document.location's value" because the element doesnt exist. Add an input field or textarea or whatever to your code, and put id="custom_http_referer" to it. I think it should be also hidden, like this one:
<INPUT id=custom_http_referer type=hidden name=custom_http_referer>
So you can retrieve the referer by using $_POST['custom_http_refere
:)
Business Accounts
Answer for Membership
by: felixjetPosted on 2009-11-06 at 12:25:14ID: 25762727
what are you trying to do?