html

What is the benefit of tableless design if you need clearing blocks everywhere?

I understand that the goal of moving towards <div> tags from <table> makes sense since it is more semantic. However, I don't understand the benefit gained if you still need a clearing block to make column-based layouts work. For example: <!-- Note: location-info & personal-info both float left. --> <div class="contact"> <div class=...

Align an image where the source is set by javascript

Hi- I'm putting the network solutions 'seal' image on my site and they give you a javascript that sets the image. I'm wanting the image to align>right. However, if you want the image, they give you a javascript code stub and it handles the rest, which has no alignment property. I've even tried putting the javascript into a table that ali...

How to make this jQuery function more elegant?

On my page I have a drop-down select box, with a default value of (empty). When the user selects an entry, the appropriate form for that entry type is displayed. Couple of problems.. The code is not DRY and seems more verbose than it needs to be, so not easily maintainable / extensible. When a user selects something, fills in the form...

html static page position after refresh

I have a page where I would like it to remain static after refresh and does not default back to the top page again as it will disrupt the position I was viewing it last. Hence I have all the time to scroll down again to find the area I was viewing last. Is there a way of eliminating the burden of scrolling down again? ...

how to passing value from a external page to inside a frame?

I have a files inside a page , this page named (mainframe.php) is a frameset contain two subframes files (file 1 : topframe.php , file 2 bottom frame.php) and i need to pass a value from an external page(file:extarnalpage.php) to inside the frmams(topframe and bottomframe). but I can not do that...and the pages is as the followin: ma...

How best to write documentation (ideally in latex) targeting both the web (html) and paper (pdf)?

Latex-to-html converters I've seen in the past have been pretty awful. Editing raw html is no fun and doesn't seem to translate well to the printed page. How do others solve this problem? Links to examples (both pdf and html) would be great. Added: This question is pretty similar, though specifically about books: http://stackoverflo...

Parsing fixed-format data embedded in HTML in python

I am using google's appengine api from google.appengine.api import urlfetch to fetch a webpage. The result of result = urlfetch.fetch("http://www.example.com/index.html") is a string of the html content (in result.content). The problem is the data that I want to parse is not really in HTML form, so I don't think using a python HT...

What the best pratices to place ads in a website?

I want place ads in my website, but I'm unsure about the commom pratices to place thes ads. By example, some cool asp.net articles sites shows ads in the middle of the article! So you read 2-3 paragraphs, read some ad, then finish the article reading... Another worry is about sabotage. One of mine customers get their Google adsense acco...

Vector graphics in Javascript?

One of the advantages of Flash/Flex is that you can use vector graphics (SVG), which is nice. I did a bit of searching around and came across this Javascript vector graphics library. It's pretty simple stuff but it got me thinking: is there any possibility of using vector graphics files such as SVG with Javascript/HTML or it just can't...

How can I post data (form) to html page and hijacking the data in the middle?

the site addres: http://www.ynet.co.il/YediothPortal/Ext/TalkBack/CdaTalkBack/1,2497,L-3650194-0-68-544-0--,00.html fill the form with rubbish. Hit 'Send' the form post the data to another HTML without any parsing of the data i've just added How do they do it? ...

Adsense in a ajax based application?

How do I add adsense or other ads in a asp.net ajax/ajax based application ? (ex. ra-ajax samples page) or GWT Is creating an iframe a viable solution? As stated below, placing adsense script is easy. But the google bot wont be able to scan my ajax based page, as all of the content is javascript. There wont be contextual ads. So wont...

jquery html attribute not working in IE

I am using country and state dropdowns in my form. Whenever the user selects the country in the dropdown, the respective states of the country will populate in the states dropdown. I am populating the states in the dropdown using ajax call. The problem is that the states get populated in Mozilla but it doesnt work in IE. I guess there i...

inherit "font-family" style in SELECT/OPTION

I have a HTML code like: - <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; <html xmlns="http://www.w3.org/1999/xhtml" > <head> <title></title> <style type="text/css"> body { font-family:"Verdana",Arial,Helvetica,sans-...

HTML vs XHTML does it still matter?

Hi all, I'm wondering if I should bother at all about the markup language, as long as i produce valid markup. I've read articles that point out HTML is the best choice and they come directly from the horse's mouth (the browsers implementors!): http://webkit.org/blog/68/understanding-html-xml-and-xhtml/ https://developer.mozilla.org/e...

How to dynamically change a web page's title?

I have a webpage that implements a set of tabs each showing different content. The tab clicks do not refresh the page but hide/unhide contents at the client side. Now there is a requirement to change the page title according to the tab selected on the page ( for SEO reasons ). Is this possible? Can someone suggest a solution to dynamical...

How can I completely remove the Margin of textboxes in HTML/css

I have the following HTML <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title></title> <style> .box { border:solid black 1px; padding:0px; margin:0px; } </style> </head> <body> <form id="form1" runat="server"> <input class="box" style="width:300px;" /><br...

Why does 150 + 150 not equal 300 in browsers?

I have the following HTML <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <style> .box { border:solid black 1px; padding:0px; margin:0px; } </style> <...

Web security, are there issues with hidden fields (no sensitive data)?

I was having a discussion with coworkers. We have to implement some security standards. We know not to store 'sensitive, addresses, date of birth' information in hidden fields but is it OK to use hidden fields for your application, in general. For example: action=goback It seems like it would be safer to use hidden fields for that k...

Why does my iframe content have an empty area around it?

I have created an iframe code that I want people to use as a widget on their website. This iframe will load a webpage which has a button and a counter. In the accessed page I've got a graphic. But the iframe is rendered in the browser with a white empty area around it. Why is this happening? Here's my code: - At the client side: <scri...

HTML Sanitization - bad markup?

I've been scanning some off the discussions on sanitizing HTML markup strings for redisplay on a page (e.g. blog comments). In the past I've just unilaterally escaped the markup for re-display. Does anyone know if there are any solutions out there that go beyond just removing "unsafe" tags? What if the markup is invalid? For example,...