I have been toying around with the idea of enabling an html and javascript file to read MS Access database records. I understand that the database will have to sit on the client for the html/JS file to read it. However, after some successful tests, I notice that just the front-end of the Access database has to be available on the clien...
I'm trying to create a form where the a user can click a checkbox and their physical address properties get populated to their billing address properties.
My checkbox looks like this:
<label for="UseAccountAddress">Use Account Address</label>
<input id="UseAccountAddress" type="checkbox" value="true" name="UseAccountAddress"/>
And a ...
I'm using the 960 grid system to make a site (www.960.gs).
I have a 9 column wide div (grid_9) with two divs inside it (grid_5 and grid_4).
This is meant to yield one large outer div with 2 internal divs sitting side by side inside of it.
However when viewed in IE6 it displays as one larger div with two internal divs, one below the ot...
I have the following code:
<fieldset>
<legend>
<strong>Personal Information</strong>
</legend>
<ul>
<li>
<label for="first_name">First Name</label><br />
<input type="text" id="first_name" name="first_name" value="" maxlength="30" />
</li>
...
</ul>
</fieldset>
...
How do I make it so that instead of indenting my elements by multiples of 2 spaces (when formatting without wrapping is selected), HTMLTidy indents them by multiples of tabs (4 spaces long but only 1 byte in size)?
...
I need to display an imagemap with about 70 areas in it. The area of the imagemap the mouse cursor is currently at is supposed to be highlighted in a certain color.
Is this possible and if yes, how?
...
From Qt online help:
void QWebElement::setPlainText ( const QString & text )
Replaces the existing content of this
element with text. This is equivalent
to setting the HTML innerText
property.
My code:
QWebElement login = doc.findFirst("input[name=\"login\"]");
login.setPlainText("alibaba");
qDebug() << login.toPlainText...
Hello all,
I am building a small web application to run midi files. Currently I am using quick time to play the midi files. The problem is that I do not know to what source I need to tie the object until the user enters some information (something like a search ). I need to be able to update the quicktime movie to the correct path. Is i...
Hi ,
We are creating a web page with header, content and footer. The header and footer should be visible at all time and the content should be scrollable. The container div has a fixed width but no fixed height. I solved the problem of keeping the footer at the end by using css sticky footer (http://ryanfait.com/sticky-footer/) The con...
I'm putting together a portfolio website which includes a number of images, some of which I don't want to be viewable by the general public. I imagine that I'll email someone a user name and password, with which they can "log-in" to view my work.
I've seen various solutions to the "hide-an-image" problem on line including the following,...
Hi
I saw a trick once on a website which made the main scrollbar of the page always stay visible. I can't remember how it was done. Does anyone know?
...
I'm running Firefox 2.0.0.14.
I have a form on a webpage which is working fine with the GET method.
I'm using a plugin to view my browser's HTTP request when submitting the form, and here it is :
GET /postComment.php?review=2&comment=Testing HTTP/1.1
...
However, if I make the simple change from method=GET to method=POST on the form...
How does images.google.com render its frames??
I have two servers, that have external web viewable content, and an internal search engine that only admins can use. The external content cannot be edited, it was created with some proprietary technology. What I want to do is allow my internal admins to see a bar that allows them to perfor...
I haven't used frames since 1998. They seem like a bad idea and in all my development I've never had a situation where frames were the right solution, or even a decent solution.
However, I'm now working with an internal web application written by another group and the entire site is built in a - header, left side menu, right side conten...
I currently have a jQuery function that replaces an image when clicked. For instance:
<script type="text/javascript">
$('#test').click(function(event) {
event.preventDefault();
img = $('<img id="myImage" class="photo" src="newImage.jpg>');
$("#myImage").remove().append(img);
});
$('#myImage').click(function(event) {
...
When you go to page on my website where there is extra content, the scrollbar appears on the right, but it has a notiable shift to the left for my content. You notice this by clicking home and then hosting and back again on my site (www.ipalaces.org)
How can I account for the browser scrollbar on my pages?
Can I make it so the scrollba...
I swear... i hope this is the last question I have to ask like this, but I'm about to go crazy.
I've got a JTable using a custom TableCellRenderer which uses a JEditorPane to display html in the individual cells of the JTable. How do I process clicking on the links displayed in the JEditorPane?
I know about HyperlinkListener but no mou...
I'd like to scale a large image down to the width of the user's screen. I don't want to set width: 100% because it distorts the image. Can I use CSS transforms for this?
ThanksMike
...
G'day everybody,
As an avid firefox user, I use plugins like stylish and greasemonkey to modify default styles of pages. However the view->page source option of the browser shows only the page in its original form and not the current form after it is manipulated by a script or a style. Is there any way i can view the source o...
I've tried:
<!--[if lt IE 6.0]>
HTML TO HIDE FROM IE6
<![endif]-->
but unfortunately the stuff gets hidden from firefox too. Anyone have methods that work? I want the stuff to be hidden from only IE6
Thanks
...