html

Text alignment with pictures

I have an image on my webpage in which I want to have text wrapped on the right of it so I have some CSS like: .image { float:left } But after reaching a certain point in the text, I want to make sure the text no longer appears to the right of the image, I want it below the image. What tag can I use to break the text onto a new line...

How to create multiple HTML elements with jQuery?

What I'm trying to do is to create a table pager control using jQuery. It contains lots of links and spans. I've managed to do this with plain string concatenation, but I can't believe that jQuery can't make this more elegant. I can't use jTemplates here since the generation has quite a bit of procedural logic. Question: is there a way ...

White space around image

I have some text around an image that has been floated left. But the text goes right up against the border of the image. How do I make some white space around it? At the moment I've got in the CSS: .image { float:left } and the view: <% if article.newspic.exists? %> <div class ="image"> <%= newspic_thumbnail_tag(articl...

Breaking CSS Inheritance

In a page I use a tabstrip with its own stylesheets. This tabstrip writen with divs and anchors. I add some other divs into tabs but they inherit stylesheet from the outer tabstrip. This new divs has their own css classes. Here is my question, are there a way to break this inheritance without changing the structure of css ? Tabs' C...

Using HTML and Local Images Within UIWebView

Hey guys, I have a UIWebView in my app which I want to use to display an image which will link to another url. I'm using <img src="image.jpg" /> to load the image. The problem is that the image doesn't load (ie. it can't be found) even though it's added as a resource in my project and is copied into the bundle. I've tried using NSB...

Reformatting input-fields

I want to reformat the contents of an HTML form-field when submitting. For example: The user enters "1.234,56" (which is a valid format for numbers in this locale), but I want to submit the value "1234.56" to the server. I'd like to hear about other peoples experience with this. How do you do this? My first thought is an onSubmit-even...

Captioning an image

What's the neatest way to caption images on the web using the latest in HTML/CSS? Demo code please. ...

List subversion repositories

How do I list all my subversion repositories on a html page? All repositories are located in a root folder. I want to list them as a link list to get a overview of my repositories and to have easy access to them. ...

How to display simple HTML in a Silverlight textblock?

I've got a source of data that has HTML tags in it (B, I, A) and need to display this in a Silverlight ListBox. Searching around it seems to be an issue but most of the posts are old and have to do with Silverlight 1 it seems. What is currently the best way to display simple HTML with Silverlight, if nothing else, just the B, I and A ...

Html / php page being cached (client side) when it should not be

URL is here: http://www.thexsoft.com/DownloadFolder/download.php?file=P2PTransfer This page is basically a way for me to have set url to download a certain problem i published. This page should never ever be cached, but it seems to be caching still. I have set the following items: <meta http-equiv="expires" content="0" > <meta http-eq...

find words in html page with javascript

how can i search an html page for a word fast? and how can i get the html tag that the word is in? (so i can work with the entire tag) ...

Which controls does the EnableViewState affect on a GridView?

I am cleaning up my viewsource and want to use the EnableViewState. I am using a gridview that has the following. <asp:GridView ID="GridView1" runat="server" AlternatingRowStyle-BackColor="#ECECEC" AllowSorting="true" AutoGenerateColumns="False" OnRowDataBound="gridvw_RowDataBound" ShowFooter="True" OnSorting="g...

Best way to obfuscate an e-mail address on a website?

Hello all. I've spent the past few days working on updating my personal website. The URL of my personal website is (my first name).(my last name).com, as my last name is rather unusual, and I was lucky enough to pick up the domain name. My e-mail address is (my first name)@(my last name).com. So really, when it comes down to guessing it,...

How to get all element parents using jquery?

How to get all element parents using jquery? i want to save these parents in a variable so i can use later as a selector. such as <div><a><img id="myImg"/></a></div> GetParents('myImg'); will return "div a" something like that ...

<cite> as part of semantic markup

One of the sites I develop has lots of information linked between each other; we have companies, we have products for those companies. The company page links to the page listing the products for that company, and vice versa. From the HTML spec: CITE: Contains a citation or a reference to other sources. Does this imply that I...

How do I Display Code Samples On Web Pages With Nice Syntax Styling Like Stack Overflow Does?

I would like to be able to pull some code samples out of a database and/or have the text embedded into the website and then have the sample formatted in a code like fashion on the screen. While the text alone on the screen is great, the format will make it more user friendly. How is this done? I want this:  public string MyString = "T...

Running HTML through Javascript

I'm trying to run the body of a website through a javascript search I created. It works fine, except there are no spaces in between words; as well as the fact html in this xcase the image does not appear/show. Any solutions? Therefore i need help getting the image to show. Then getting the text as seen to show on the browser with spaces...

Why doesn't ":active" work properly inside a Gecko frame?

It seems to me that Gecko has a bug involving ":active". To illustrate, put this into a file called test.html: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "hxxp://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en" > <head> <style type="text/css"> .clic...

Display slideshow of Private Photosets from Flickr

I have a number of photo sets that are marked as private on Flickr. I have a website and I would like to display all of them as Flash Sideshow. I am currently using Flickr.NET open source library and I have created a web application to retrieve the list of all the photo sets. I can use other methods to display photos but I really like t...

Reading file contents on the client-side in javascript in various browsers

I'm attempting to provide a script-only solution for reading the contents of a file on a client machine through a browser. I have a solution that works with Firefox and Internet Explorer. It's not pretty, but I'm only trying things at the moment: function getFileContents() { var fileForUpload = document.forms[0].fileForUpload; ...