html

How to force an <img> to take up width, even if the image is not loaded.

I'm loading a bunch of img's, and I'd like them to take up space on the document even if they are not loaded, or have not completed loading yet. I tried specifying width and height (both as attributes themselves, and within a style attribute), and find it frustrating that the images will not take up space if they don't load. Surely, th...

Looking for a popular templating language that needs XSS protection

I'd like to experiment with a popular HTML templating language to see if I can solve XSS problems in it. What is a popular, open-source, templating language that I could try to tackle. By templating language, I mean a language used to generate an output language by combining static content in that output language with dynamic data from...

Is there a way that I can auto redirect people to a different page based on their state?

I am new to this and have been playing around, I was wondering if I could auto redirect people from the landing page to a page that would have information about their state. Like url.com/ to url.com/michigan.htm The current code that I've found <script language="Javascript" src="http://gd.geobytes.com/gd?after=-1&amp;variables=Geo...

What's the problem with my script?

Why is this giving me null? <script language="javascript"> var element = "11"; var string = "7,11"; var check = string.match("/(^|\D)"+element+"(\D|$)/g"); alert(check); </script> When I run the regex on http://regex.larsolavtorvik.com/ it works correctly. Pleeeease help I want to sleeeep! :)) ...

Quickest way to copy the CSS from HTML markups

For example, when you open Firebug and select an HTML element, the CSS styles that affect this element will show up on the right panel. If this element has no child, copying its CSS styles is easy. But sometimes the element has lots of descendant elements and they have CSS styles defined on them as well. What is quickest way that you k...

Python regular expression slicing

I am trying to get a web page using the following sample code: from urllib import urlopen print urlopen("http://www.php.net/manual/en/function.gettext.php").read() Now I can get the whole web page in a variable. I wanna get a part of the page containing something like this <div class="methodsynopsis dc-description"> <span class="t...

how to send data with form label element ?

I should send data with form when submit button pressed.This value should be invisible and I used <label name=r_id id=r_id style="visible:hidden"> 1 </div> This is my form <form id="send_message" action="lib/send_message.php" method="post"> <textarea name="message" cols="45" rows="3" id="message"></textarea> <label name="...

Internet Explorer 7 strange behaviour for drop down list

Created a very simple HTML/CSS drop down navigation using nested unordered lists. Works great with Firefox, Chrome, IE8 but in IE7 the sub navigation doesn't sit below the parent, instead it sits below parent to the right. For an example and HTML/ CSS have a look here http://webfe.omega.studiocoast.com.au/ I'm stumped! ...

area tag in html

Hi i have an image with 525 width. I need to place a link at the right side of the image. I know area tag is better to do this. But i don't know this tag. Could you please give me the coords attributes for this Thanks ...

HTML : Is there any way to show images in a textarea?

So I want to show image thumbnails too in the <textarea> along with text. If you know a javascript solution that's perfect too(if possible in vanilla JS). Like this: __________________ |Hello World | | _______ | | | Img | | | | | | | |_____| | |Hello again. | | _______ | | | Img2| | ...

HTML / JAVASCRIPT : Disable HTML in contentEditable=true

Possible Duplicate: HTML / JAVASCRIPT : Disable HTML CONTENT in contentEditable=true I want to know how to disable or control html elements, tags and drag and drop, image resizing and all what comes with contentEditable contentEditable="true" element. Before you ask why: Right click on this page: Control or Command+A go to h...

Click through div with an alpha channel

Hey, I'm trying to replicate twitter's "fade out" layer at the bottom of the feed widget (on their main page at twitter.com). The only way I could come up with that didn't use html5 was place an absolute positioned div above the feed div, and give it an alpha channeled png with a white-to-transparent gradient above it. This was easy to...

HTML DOCTYPE Syntax error

I get the following syntax error in Firebug and I don't get what's it: > syntax error [Break on this error] > <!DOCTYPE html PUBLIC "-//W3C//DTDXHT...org/TR/xhtml1/DTD/xhtml1-strict.dtd">\n Is it because of the final "\n" at the end ? thanks ps. I've just realized if I remove all scripts, I don't get that error. For example, if I re...

Why won't this validate?

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN""http://www.w3.org/TR/html4/strict.dtd"&gt; <html> <head> <title>title</title> </head> <body> <form action="next.php" method="post"> <input type="text" name="my_input"> </form> </body> </html> ...

How can I automatically submit the Facebook URL sharer form?

Hi guys, I am trying to figure out, how can I automatically submit a url at the following page http://www.facebook.com/sharer.php without actually clicking on the submit button. Thanks. ...

input.setAttribute('type', 'checkbox'); IE bug

This problem shows only in ie.all other browser namely ff,chrome,safari,opera works well. It doesn't show chcekbox instead shows a value box... code: <html> <head> <title></title> <style> *{margin:0;padding:0;} ul { padding:10px 10px 0 35px; list-style:none; } li{ display:inline; text-weight:bold; color:#475D7F; ...

Is it invalid HTML to write "&" by itself? Why?

Possible Duplicate: Do I really need to encode '&' as ' &amp;' ? I know that W3C recommends to "use "&amp;" (ASCII decimal 38) instead of "&" to avoid confusion with the beginning of a character reference", and that tidy warns of an "unescaped & which should be written as &amp;" but, these warnings not withstanding, is it vali...

How to get cell data of specific row from the dynamically created HTML table?

How to get cell data of a specific row from the dynamically created HTML table in JSP? I am creating JSP Page in the following way Connect to MySQL Databse Fetch rows from table based on criteria Construct HTML table dybamically based on the rows returned in step 2 The first column of table contains checkbox JSP page contains ...

Showing XML in HTML, works only in ie6

This code works only in IE6 why it is? and how else i can display my xml in html (without css)? <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> </head> <body> <xml id="xmlcatalog" src="catalog.xml"> </xml> <table datasrc = "#xmlcatalog" width="100%"> <thead> <th>Im...

Prevent displaying unstyled page when doing a page-refresh.

How could I prevent my page displaying an unstyled view while the page is loading ? I think its probably because of the order of loading different JavaScript-files. Is there a best-practice, for example loading plugins before my own code ? Should every jQuery/.js-function called after document.ready or windows.load ? link to page Than...