html

Submitting HTTPS over an iframe in IE problem

I'm working on a script to automatically sign you in to basecamp for a project... so far i have come up with the following as something simple just a form you submit which posts to an iframe: <html> <head> <style> #bc1{ width: 100%; height: 350px; } </style> </head> <body> <iframe id="bc1" name="_bc1"></iframe> <form method="post" i...

HTML Agility Pack Fix <li> list order

I have been trying to use the HTML Agility Pack to parse HTML into valid XHTML to go into a larger XML file. This for the most part works however lists become formatted like: <ul> <li>item1 <li>item2 </li></li> </ul> As oppose to what I would expect: <ul> <li>item1</li> <li>item2</li> </ul> Unfortunately this fo...

I have a basic problem understanding CSS positioning

Edit: Ok, this is what works. It may not be "right", but 1) it displays correctly & 2) it validates at W3C. It seems that I should make all positioning absoolute and add positioning to all divs except for those with a fieldset, where I have to add the position to the fieldset. Feel free to correct this if you think that I am wrong, but ...

Should I use almost standards mode for all browsers?

I am working on a project which requires IE6 compatibility. Unfortunately, IE6 and IE7 do not support standards mode. Because of this, I am tempted target almost standards in for all browsers and just ignore standards mode completely, so that I am only targeting browsers running in the same standards mode. I figure that because XHTML tra...

HTML page shows data that is not in the file.

Hi, I created a c++ program that parses a file and dumps some data into a html file. The output is as follows: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"&gt; <html> <head><title>Block 0xa8</title></head> <body> <h1>Block 0xa8</h1> <table> <tr> <td>02 </td> ...

What is the best way to edit those 1 pixel background images?

Hi all, I got my colleague's web page together with and the css files and many images. I need to apply part of it to my jsp page. I have to admit that I didn't have any experience in handling css. Currently I am using GIMP2 to edit those 1-pixel-width background images. It's really the pain in the neck. I have to guess the proper image s...

Creating list of divs by class

I'm not sure whether I should be doing this with jquery or php, but I have a html page with several divs of the same class, but different ids. ie: <div class="something" id="furniture">contents</div> <div class="something" id="lighting">contents</div> <div class="something" id="homewares">contents</div> What I'm looking at doing is cr...

BLACKBERRY SIMULATOR

Which Blackberry Simulator Works fine with every model of Blackberry for web development.? My Question is basically If I do make a webpage(Using HTML and CSS 2.1) for Blackberry Bold 9000 , will my webpage work fine on any blackberry model. If NO , what can i do for it? NOTE: I dont want to test my application on each simualtor. ...

Why the image blurs when it is in motion tween?

I had atleast 20 images.i tried to move it scroll from right to left in Flash MX 2004. When i pr viewed in timeline window it shows actual image moving. But when i exported it into swf it shows as a Blurred image moving. The movie is at http://www.ahilam.com/tes.swf How to solve this. Plz help. Any help will be greatly appreciated. ...

count all HTML tags in page PHP

I spent time on regex to solve this problem but not have result i try solve this problem using PHP 5.3 Information like - How many times repeats in page - How many times repeats in page and information about all tags in page ...

A Registration system using HTML and Microsoft Excel/Access

My friend asked me to make a registration software for his blood donation camp. He told me that he can't host an ASP.NET or PHP page. Also that since they'll be running the software in many systems, which may not be interconnected, they may not be able to use a Database server. Is there a way to store/read data from an MS-Excel or MS-...

assign delete for each row using sql query dynamically not specifying the row NAME or ID

Hi Guys I want to assign delete for each row using sql query but not specifying the row NAME or ID, e.g.: $sql = "DELETE FROM $table WHERE Description1 = 'Description 10'"; ...must be dynamically maybe via row ID to delete correct row at any given time? Please let me know if you want me to eloborate more about the question above, than...

How can I have a form where the text in the input disappears when clicked? (for feedburner form)

Hi all, I've got the following "subscribe by e-mail" form: <form style="border:1px solid #ccc;padding:3px;text-align:center;" action="http://feedburner.google.com/fb/a/mailverify" method="post" target="popupwindow" onsubmit="window.open('http://feedburner.google.com/fb/a/mailverify?uri=food101coil', 'popupwindow', 'scrollbars=yes,width...

Where is form response stored ?

Suppose I have a radio button collection. While I am selecting/deselecting certain options, Tick mark seems to be moving as well. However if I see the HTML code, none of the options really show a "checked=true" in html. 1)So where is this information stored about my choices really ? DOM objects ? Also using JS I change the checked attr...

Allow empty html tags in ckeditor

I am using ckeditor 3.1 in an MVC application. If an html tag is empty then it places &nbsp; in it. i want to allow div tag as empty(<div></div>), and no   to be get inserted(<div>&nbsp;</div>) . I have also used the latest code for ckeditor(3.3.1) but the same probelm persist. Do we have to make some manual change in any particular file...

how do I get my html Div to resize in sync with other elements.

So I am making a web page, and when I zoom in or out on any web browser on the webpage, everything shrinks in the same proportion, which is fine. However, when i start to use a DIV that i position absoluteness, i do not get the same effect. When zooming out, the div does not stay in proportion with the other elements on the page. How can...

Expanding scrollable HTML table with fixed position content below it

I wish to reimplement a GUI element (previously Tk) in HTML + CSS + Javascript, but achieving the same layout behaviour is eluding me (new to CSS). The goal is to have a page consisting mostly of a table, with a text entry box below it, at the bottom of the view. When the window is resized, the rightmost column of the table should expand...

How to make a div appear all over the site?

Hi, im trying to make a 50% opacity div appear all over the site, i gave it position absolute and width, height of 100%. but its still appears only parts of the site, if you scroll down, its not wrapping the rest of the site. what can i do? thanks! ...

change width of input field depending on browser?

Hi i have an input field and i want it to be 2 different sizes in internet explorer and firfox if possible, the code i have right now is: div.search input#query { width: 450px; height: 24px; font-size: 16px; } so i want somthing like this: div.search input#query { if internet explorer { width: 450px;} else { width: 350px;}...

Is it possible to cache JS inside <script/> tags on HTML page?

When JavaScript is inside external .js file it's cached on the browser. Is it possible to do the same with JS inside tags on HTML page? ...