If you use the <base> tag, links in JavaScript (window.open for example) will ignore the <base> tag. The way around it is to make the link in the JavaScript relative to the domain.
<base href=”http://www.example.com/this_site/”>
The JavaScript should look like this.
window.open(‘/this_site/page2.html’);
Archive for August, 2006
Base tag, IE and JavaScript
August 31, 2006
PHP IDEs
August 11, 2006
This is what I’ve found after trying various IDEs available for PHP.
If anyone has any suggestions or thinks they know the solution to the listed problem, please comment. I need a good editor and I have yet to find one.
PHP IDE (Eclipse)
- Cannot deal with simple lines such as: $var = “value={$value}”;
- IntelliSense does not [...]