My designer believes this cannot be done, however it seems possible to me. (Although I have limited CSS experience). However, he also said the background couldn't be fixed, and stackoverflow has proved his wrong in the past; so I question his knowledge.
JQuery can be used if this cannot be done in pure CSS.
The top half will be a grad...
Hi All,
First tentative steps into client side. I'm having trouble finishing the following. My question is how do I return the value of a function in a HTML statement ...
<script language="Javascript">
function checkjava()
{
return 1
}
</script>
</head>
<body>
<form action="enabled_catch.php" method="get" name="your_form">
<input typ...
I am working on getting my website to display nicely in IE7.
IE6 is already done, and also FF, Chrome, Safari, Opera etc...
I am running IE7 in IETester if that makes any difference.
I have a problem with an input type='file' in IE7. The button next to it (browse button) is very short with hardly any width at all. It is as if the butto...
I have a classifieds website, and when posting a new classified users fill out a form offcourse. Then they hit the submit button, and a "verify" page appears which displays what they have filled out, and if it looks good, the users hit the "ok" button and the classified is posted.
Here is a short example:
<form action="verify.php" na...
The demo page: CLICK HERE
I have made a picture to show:
As clearly seen in the picture, there is a gap from the div left_bg and the div middle_bg. The left_bg has no content, and its width should be fluid and fit inside it's div container top-container. Just to help demonstrate the gap I have it set left_bg to width:500px. However, ...
I have the option of validating XHTML 1.1 documents against the official XHTML 1.1 DTDs (I use the plural because the "main" DTD actually includes several others) or against the official XHTML 1.1 XML Schemas.
Now I know that the XML Schema language is more expressive and powerful and can therefore check for more things. What I'm wonder...
I have a page with a search form, and when submitted, the form action is set to an iframe on the same page.
The iframe displays the search-results. THEN, when clicking on a result, a new page opens displaying it. However, when hitting back from the displayed page, the iframe is closed, and it is as if no search was made at all.
Is this...
Hello!
I hope someone can help me since I have no clue whats going on here.
I have a table with an image in each row (at the beginning).
Each image has tooltip (title attibute). HTML looks lie this:
<td align="center">
<input type="hidden" value="0" />
<img src="/img/prognosis/2green.png" title="Augsburg-Göggingen ">
</td>
To make...
I have the following XML (which is actually HTML):
<html>
<h4>something</h4>
<p>a</p>
<p>b</p>
<h4>otherthing</h4>
<p>c</p>
</html>
Can a XPath selects the "p" nodes that are following siblings of the first "h4" node but not following siblings of second "h4" node (selecting "p" node a & b only)?
...
C#, ASP.NET, VS08, using HTML table.
I want to merge cells - rowspan and colspan spans it but does not merge it.
For a clear picture,
drag a HTML table control on the design view
select the cells of a column
right click, modify, merge
I would like to do this programatically in C# coding on a button click.
...
Hi,
I have a div with a background image set to an SVG image. I need to transition between two SVG images, how would I accomplish this? I am referring to CSS 3 transitions, but other solutions are also welcome.
...
Hi,
I've been working on the following (with some very good help from users here at stackoverflow). It works brilliantly, but now I realise it needs to trigger when the page loads rather than on a trigger. I'm a newbie to client side, so would appreciate your help.
<script language="Javascript">function checkjava(){return 1}</script>...
I have this url:
http://www.mydomain.com/index.html
And want a rule to rewrite the above into this:
http://www.mydomain.com
In other words, remove the index.html part of the code...
Something like this maybe:
RewriteRule ^$ index.html [NC]
Thanks
UPDATE:
When you type www.domain.com into the browser, offcourse index.html ...
Hi,
I'm working on a simple script to pass the value " ...php?answer=1" if java is enabled. I've got this far ...
<script language="text/javascript">
document.form.answer.value=1;
</script>
</head>
<body>
<form name="form" action="enabled_catch.php" method="get">
<input type="hidden" name="answer">
<input type="submit" value="click me"...
Does anyone know a Linux browser (it can be console-based) that can read an HTML page from its standard input? For example, I want to do this:
generate_html | browser
Thanks!
...
Hi
I'm working on the following. It basically passes ?answer=1 if js is enabled. It works until I add the onload argument (as I want this to happen without a user trigger). However adding onload appears to stop (the otherwise working) getElementById argument. Why is this happening?
<script type="text/javascript">
window.onload = functi...
i read several articles on this site and many others recommending report generating tools of various kinds but all use dataset as there datasource
this is not my requirement!
i need some way to export the data which is displayed in the htmltable on mypage.aspx
user clicks view record
a pdf opens (it should contain the data of the htm...
Possible Duplicates:
Tooltips in the era of touch
UX Design for Disabled Controls w/ the Touch Interface
I've long been in debt to the wonderful wz_tooltip javascript library, binding mouseover events to tooltips in order to offer contextual information. However with touch interfaces on the rise, I am now looking for a bett...
I have opend a html file with
file_get_contents('http://www.example.com/file.html')
and want to parse the line "ParseThis":
<h1 class=\"header\">ParseThis<\/h1>
As you can see the it's within a h1 tag (the first h1 tag from the html file). How can I get the Text "ParseThis" ?
Thanks!
...
I have a client that wants to be able to copy a range of cells from excel and paste it into a web browser. It will basically be the code of a product in one column and a price in another column. I want to be able to submit this as a form to do some php form processing on it. Is there a way that this can be accomplished? He wants to c...