I have a Web application and have run a XSS scan on it and it reports that one of my pages that has a Java applet in it could potentially be open to XSS.
The test managed to assign a javascript alert box to the following HTML code:
<param name='id' value='' onMouseOver=alert(40041)>
My question is - Is this a valid test? Will doing ...
Hi,
I'm working on a website which has advert banners which link to external pages.
I've recently added the ability to have flash banners, but am stuck on how to make the banners link without editing the flash file.
The idea is that clients wanting to advertise on the site send a flash advert which is then linked to their site through...
Hello,
I am using a jQuery plugin called: jqtransform
This plugin uses JavaScript to apply CSS styles to form elements.
The problem that I have consists in the following scenario:
I’m building a search page, with a advanced search option.
When the page loads, the div called “advancedSearch” is hidden, and it will only show if the use...
I am a server side dev, but I notice that more and more I am seeing the requirement for us to be able to convert flat images to html.
I have a basic understanding of CSS i.e. I can work with it, but haven't ever done a prject from scratch before.
Can someone direct me to online tutorials or videos (preferred) of someone going through t...
I have a project with several CSS files, each with many different settings. Every now and then I'll put an element on the page and it will appear unexpectedly, like an odd indentation, font color, hover behavior, etc. It's always a hunt to figure out exactly what CSS setting is causing the behavior. Is there any way to know exactly which...
The following page is mucked up in IE8 -- the bulk of the content starts appearing half way down the screen and the tables/divs do not look as they should. It works in other browsers and in IE8 compatibility mode. I've inspected the HTML and can't work out what's wrong. Any help would be appreciated. Thanks.
http://www.moviemonitor....
A user has sent me some information that they posted to one of my pages with potential XSS issues however, looking at the server side code I don't think it would ever run through my code smoothly.
They said they sent this:
forminfo=%27+%7C%7C+%27%27+%7C%7C+%27%25booleantest%3Atrue%2Ctrue%2Ctrue
I have looked at this and have worked o...
On XP in Firefox, I load a flash button in a layer that sits above a scrollable div in the z-index. When my flash button is over the background of an empty scrollable div it does not respond to mouse clicks. If I drag the layer so that the scrollable div is no longer behind the flash button, it works as expected.
Anyone have any insigh...
I'm using Adobe Air with a custom chrome and want to have a close button to close the window
I'm just starting out so I have no idea. I'm using HTML and javascript with Aptana Studio.
...
So I almost have my delete function working...I have the page loading correctly without any fatal errors but still not doing the trick
Here is the portion of my while loop:
echo "<a href='http://www.@#@$#%##%#.org/Profile.php?id=".$prof->id."'>";
echo " delete";
echo "</a>";
and here is the portion of my query which is obviousl...
Hi,
I saw some web pages display diffrently on an iPod Touch (and iPhone) - they pretty much looked like the native iPhone apps.
Think this can be done with styles and, optionally, rendering diffrent HTML on the server side, based on the user agent from request.
So, how do I get this effect? And, also, is there any emulator of iPhone...
How can I modify the conditions for which MyEclipse will throw up warning flags? I'd be happy to hear a generic solution, but here is my specific problem for the curious/if it turns out to be relevant:
<html xmlns="http://www.w3.org/1999/xhtml">
<wicket:panel>
<p>
<object type="text/html" width="750" height="360" wicket:id="htmlRend...
hey guys,
I'm building a site and I have a proble.
I have a composed divs :
<div id="content">
<div id="left">
<div id="leftcontent">...</div>
</div>
<div id="center">
<div id="centercontent">...</div>
</div>
<div id="right">
<div id="rightcontent">...</div>
</div>
How can I put left, center, and right in the same line ?
which...
I have a HTML like so:
<table>
<tr>
<th>colA heading</th>
<th>colb heading</th>
</tr>
<tr>
<td>colA content</td>
<td>colb content</td>
</tr>
<tr>
<th>colC heading</th>
<th>colD heading</th>
</tr>
<tr>
<td>colC content</td>
<td>colC content</td>
</tr>
</table>
That products the following output:
colA he...
hello, I have a container with a height of 100% so the height will be dynamically changed to text inside the container.
anyway, the container have a background with a custom image (using background-image).
now, when I create a < div id=blabla" > with { float:left; width: 100px; height:100%; }, the background which defined in my contain...
I have a site where I use the base tag. All the links in the site are relative, and I set an absolute href so that all the links should be aimed at the right target. And it works in Opera and Chrome. All links in the menu works, all images and style-sheets are found. But in Firefox and IE they are not. And I don't get it!
I can browse i...
I have this class:
class TestClass
{
var $testvar;
public function __construct()
{
$this->$testvar = "Hullo";
echo($this->$testvar);
}
}
And this method for accessing:
function getCurrent()
{
$gen = new TestClass();
}
I get the following error:
Notice: Undefined variable: testvar in /Users/myuser/S...
From an SEO perspective, what should I consider when deciding between these three markup structures? (or others if I'm missing something obvious)
<h2><a href="...">My Title</a></h2>
<p>...intro text...</p>
<a href="..."><h2>My Title</h2></a>
<p>...intro text...</p>
<h2>My Title</h2>
<p>...intro text... Read more about <a href="...">My...
I'm working on a tricky bit of styling that's working on Safari/Webkit but not on Firefox/Gecko. I can't figure out just what's going wrong.
Here's the HTML that I'm using:
<div class="showcase"><a href=><div class="showtit"><span class="showname">Stripes!</span> <span class="showtype">a theme</span> <span class="showdate">October 2009...
Hi-
I need to make an area within a background image clickable to generate an event for JavaScript use. So, I created an anchor tag and inside that I inserted some relevant text between semantically meaningless tags which I then made hidden:
<a href="#"><i>foo</i></a>
Then I gave the anchor tag 'display:block' properties, width and he...