html

What's the correct way to hide the <h1> tag and not be banned from Google?

The website I am working on uses an image defined in CSS as the main logo. The html code looks like this: <h1>Something.com | The best something ever</h1> I would like to display just the image defined in CSS and pass the information from the h1 tag to the search enginges only. What's the correct way to do this? Google is very strict...

Change background "onfocus" + other things

I have the script <input type="text" name="name" value="Joe Bloggs" onfocus="this.value=''"/> Just like I am doing with the onfocus="this.value…" can I change the background of the field (+ change other things?) Many thanks. Also, does anyone have a better idea of how to do the script above, but so that the text reappears when the d...

CSS liquid layouts with fixed padding/margins

I was wondering if anyone knows of a way to incorporate pixel width paddings or margins to a fluid column design, without the need for extra html markup. To further illustrate, consider a simple html/css layout like this one: <style> .cont{width:500px;height:200px;border:1px solid black;} .col{float:left;} #foo{background-c...

How can I get newlines into $.text(), or, how do I make $.append() safe from HTML?

I have a chat window (using a <div>) that sometimes needs to get multiline entries. Until now, I've simply replaced incoming \n with <br> and displayed the text with .append(). Unfortunately, I've discovered leaving a naked .append() based on user input allows the user to insert arbitrary HTML, which will then be executed by the browser....

Why does jquery fadeOut act strangely with setTimeout?

I have this code: clearTimeout(tooltiptimeout); tooltiptimeout=""; $("#tool").fadeOut("slow").queue(function(){ tooltiptimeout=setTimeout(function(){ $("#tool").css("left",item.pageX-33); $("#tool").css( "top",item.pageY-95); $("#tool").fadeIn("slow"); }, 1000); $(this).dequeue(); }); What it shoul...

Read-only select element

Possible Duplicate: Readonly SELECT tag How do I make a select element read-only? I don't want to make it disabled because I am also posting its value. Take care. ...

Javascript style display not working

function insert() { var linkElement = document.getElementById("BackButton"); var linkElementLnk = document.getElementById("BackButtonlnk"); var loc_array = document.location.href.split('/'); if (loc_array[loc_array.length-3] == "m") { linkElementLink.style.display = 'none'; } else if (loc_array[loc_ar...

HTML5 Video poster attribute in Safari and Chrome

In Firefox the image specified by the poster attribute of the VIDEO tag remains on screen until the play button is pressed. However in the Webkit browsers (Safari and Chrome) the poster is dumped in favor of the first frame from the video as soon as the video metadata is fetched. I want to avoid having to place the poster on top of the ...

In Internet Explorer, input fields are a few pixels longer than select boxes; how can I make them the same length?

Given the following code: <form> <input type="text"> <select> <option>Foobar</option> </select> </form> With the following CSS: input, select { width: 200px; } Internet Explorer displays the text input slightly larger than the select box. Is there a way (that hopefully doesn't break compatibility with other browsers) t...

Noob jQuery "$" function return question

HTML: <input type="text" id="priceperperson1" name="priceperperson1" /> <input type="text" name="personsvalue1" class="countme" readonly="readonly" /> JS: jQuery(document).ready(function($) { $('div.pricerow input.countme').each(function(){ var id = this.name.substr(this.name.length-1); alert($('input#priceperperson'+id)); this.valu...

Word Document to HTML

I have looked over the answers to what is the best to convert Word to HTML for free. What if I am willing to pay? The big issue is that these documents have several tables that need to be kept exact. The background colors and cell alignment have to match the original. ...

HTML Custom Input type for schedule

I'm looking for a way to input a 'schedule' for a task from a user of a web app I'm working on, and have it be used on multiple pages in my UI. I was looking for something that would allow me to configure whether was manually triggered, run monthly/weekly/daily/hourly, etc. and then based on the configured frequency show subfields, like...

Python and HTML: Assign a variable to a submit button

I'm writing this to a text file which is then read in by my browser. How do I assign the variable "i[0]" to the to the "submit" button so it is passed to my edit_python script? k.write('<table>') for i in row: k.write('<tr>') k.write('<td><form action="edit_python" method="post" name="edit_python"><input type="submit...

Using an XSL for-each on identical XML children

In brief, my problem is that I want to loop through the contents of one child among identical children, but when I try to do so, it loops through the contents of all the children, giving me as many duplicates of the data as there are children. Example code: Input.xml <?xml version="1.0"?> <base> <item name="item1"> <foo> ...

Javascript Sort SELECT Elements

Is there an easy way to sort a list of HTML Select elements in Javascript? I would want it sorted by their names. Each Select element has other fields like title and value. Would I have to use arrays? ...

Whats the best approach to making a web application for drawing on and modifying an image?

Whats the best approach to making a web application for drawing on and modifying an image? Should be able to draw on, add text etc. I have been hearing a lot about SVG, but is that a required download for the user to view the application then? Whats the best way to handle this? What language? etc. Thanks! Preferred: PHP jQuery java...

Rendering multiple document formats with Cocoa's CoreGraphics

CoreGraphics gives the possibility to render PDF documents, this is great. But it seems like it could support other types too like Word documents, HTML, RTF and others. A quick look in the doc2pdf.py example on the Mac OS X Developer DVD makes me think so : pageRect = CGRectMake(0, 0, 612, 792) c = CGPDFContextCreateWithFilename(ou...

Flash Embed: how do i add a message that appears instead of a flash video if a user has not installed flash?

i have a flash video called abc.swf that i would like to play when a user first registers to our website. however, if the user does not have flash, i need it to tell them that in an easy way. for this reason, i am trying to tell them how to download flash with the following html: <div style="text-align:center;"> <p><strong>You do ...

How to get HTML data with javascript

Hello, I have an HTML web page full of divs and span tags identified with class that have lots of data I need in other format. I was wondering what would be the best way to do this with javascript. Thank you for the help. ...

Using img tag in an AS3 TextField without width and height attributes

I'm attempting to load HTML from the Shopify blog API into a TextField in Flash. The problem is that Shopify doesn't add width and height attributes to images that are in the blog posts. When I load these into Flash, the width and height of the image is ignored and the height of the TextField is incorrectl, which screws up my scrollbar a...