html

Html display issues

Hope i can post this issue on this forum.. i have a page in php http://www.teamdelta.byethost12.com/index.php This displays fine in firefox and the new IE. but in any older version of IE its comes up all wroung! please tell me what im doing wroung so that it disssplays incorrectly in old IE.. i wish to have a page that works in all b...

JQuery - Write to opener window

Hello, I have an HTML page that opens another page via JavaScript. When a user clicks a button in the other page, I want to post a message in a DIV of the opening page via JQuery. I cannot put my finger on it, but I cannot seem to get this to work. Here is my opener page <html> <head> <script type="text/javascript" src="jquery-1...

HTML templates in NetBeans

Is it possible to do template layouts which you can assign to all your pages within NetBeans. (The equivalent to Dreamweaver templates) Please note this is a PHP Project Thanks in advance! Any takers on this one? ...

jQuery Sortable for Two Column reordering?

Hey all. Here is the scenario. I have the below code, and I'm needing to rearrange the items within these columns. The problem is...the items don't necessarily need to remain within their containing column, they need to be able to be switched back and forth, depending on the user. Here is the sample code: <div id="container"> <d...

How to stop reloading Java applet when changing "overflow" style

When I change the "overflow" style on document.body from "hidden" to "auto", it forces a reload of a Java applet that is on the page. I have set overflow to hidden because most of the time I don't want scrollbars to be visible on the page, but I'd like to enable them without losing state in my applet. Is this possible, or is there ano...

What is a good HTMLcleanup tool?

I am working on a HTML file that is a total mess right now and wanted to clean it up. What good tool is there out there to clean up HTML files making them nice and readable with good formatting? I just want the file much much cleaner and readable. ...

HTML, PHP - Redirecting example.com/blogs to example.com/blogs.php

Hello, How do I redirect "example.com/blogs" to "example.com/blogs.php" Thanks in advance, John ...

How do I get the contents of an <iframe> containing a different site?

I'm able to get the 'src' attribute of an using .src. But I cannot get the contents that are located in another domain. Is this a browser security problem? jQuery(document).ready(function() { var elementTest = $("iframe:first").get(0); alert(elementTest.src); // ok alert(elementTest.innerHTML); // not ok }); ...

HTML Layout, ASP.Net, Browser Difference.....there had to be a better way

OK first of all let me say i'm not much of a design guy. Most of the work i do is usually on the backend/infrastructure (WCF,DB,Buisness Objects). We don't have a formal web designer unless you consider someone with a communication major who uses frontpage type programs to design web pages a web designer. I know basic HTML of course but ...

HTML question: Percentage-sized elements with minimum pixel dimensions

I have a page with elements that I want to be dynamically resizeable with the browser window, but I don't want certain elements squishing shorter than certain dimensions. Without Javascript, is there a good way to do this? Edit: Argh! Stupid question. I should've remembered that sooner. :P ...

Is there a way of including HTML pages without needing any javascript or server-side code, only HTML

Is there a way of including HTML pages without needing any javascript or server-side code, only HTML. Basically I can't be sure if the server supports server side includes. I don't want to use javascript and I don't want to use any PHP or other server side functionality. Is there any way to do this. At the moment I suspect not, but wou...

Date of Birth selector problem in IE6

I'm using a javascript date selector within a HTML form, and it's displaying as it should in the browsers I've tested in (Firefox 3, Opera 9, Chrome, IE7) but it displays really large in IE6. Here's the page I'm talking about - http://marketplace.prettypollution.com/kids-club Any ideas? ...

HTML & CSS question: Element between two absolute-positioned elements needs to resize correctly

#header { position: absolute; top: 0%; height: 24px; } #body { position: absolute; top: 24px; bottom: 20%; overflow: auto; } #footer { position: absolute; bottom: 0px; height: 17.2%; min-height: 80px; overflow: auto; } My problem is that when I compress the browser window, the middle element (the 'body') starts to slip into...

Python Web-based Bot

I am trying to write a Python-based Web Bot that can read and interpret an HTML page, then execute an onClick function and receive the resulting new HTML page. I can already read the HTML page and I can determine the functions to be called by the onClick command, but I have no idea how to execute those functions or how to receive the res...

Aligning the baseline of a YUI button with the baseline of the text next to it

I'd like to display a YUI button next to some text, but the baseline of the YUI button text does not line up with the baseline of the text next to it. The font family and size is identical for both the button text and the text next to it. If I use a plain HTML button the text baselines correctly line up. Here's a live example of the pr...

Recommendations for places where I can get good css designs/ web 2.0ish buttons, tables, etc...

Im designing a website, and often I need to present information in a nice table, or need a nice button, etc... I need recommendations for any websites which have a large collection of these elements which I could just use, instead of designing my own. Thanks!! ...

Horizontal Menu problem in IE6

My text menu items are not vertically aligning correctly in IE6 in my horizontal menu. Example - http://blacktownworkersgroup.worldsecuresystems.com/bwc09/home They seem to be ok in Firefox 3 and IE7. I've made the background red for each item to make it more obvious. Any ideas? ...

HTML form values and 'Back' button.

How can one retain HTML form info when hitting the back button? Is this a default HTML or Browser behavior? Or is it Browser dependent? ...

DLL as `src` of `<script>`

I was browsing the source code of some website, and noticed a dll file being used as the src of a <script>. (view-source:http://www.yellowbridge.com/onlinelit/baijiaxing.php) It was something like: ` Several questions: I didn't know a <script> could be anything besides js. What else can it be used for? Can you point me in the direc...

How to align button centered below table?

Hi, I put form elements in a table so that column names and inputs are aligned to 2-columns. And I put submit button and cancel button below the table. The table width is not fixed. I want to put the buttons center-aligned of the table width. One simple way is to put the buttons in the table. But I want to separate them from the table....