html

C# RegEx - find html tags (div and anchor)

Hi I have to retrieve several div section (of specific class name "row ") with it's content, and additionally find all anchor tags (link urls) (with class "underline red bold"). Shortly speaing : get section of: <div class = "row "> ... (divs, tags ...) <a class="underline red bold" href="/searchClickThru?pid=prod56534895&amp;q=&amp;r...

Should image/css/javascript references from HTML use relative or absolute paths?

What are the pros and cons of referencing web assets using relative or absolute paths? For example: <link rel="StyleSheet" href="/css/mystylesheet.css" type="text/css" /> <img src="/images/myimage.gif" alt="My Image" /> vs. <link rel="StyleSheet" href="../css/mystylesheet.css" type="text/css" /> <img src="../images/myimage.gif" alt=...

How-to display a .gif as background image?

Hi! I have a javascript "loading" function like this: function splashScreen() { var div = document.createElement('div'); div.appendChild(document.createTextNode("some text")); div.style.position = "fixed"; div.style.width = "100%"; div.style.height = "100%"; div.style.left = "0"; div.style.top = "0"; div....

IE showing hidden div under certain circumstances

After googling around and finding a lot of ie bugs I still did not find a description of the problem I have. The initial situation is a standard one. We have a tooltip which is actually a hidden div that will be displayed on mouseover at a given location. The div is hidden with display:none and contains a table with the content. We trie...

Prevent form field to be edited without disabling field

I am currently working on a page that has a date picker for one of the field. One of the requirements by my client is to prevent the user from editing the field manually. Only the date picker would be possible to be used. (jQuery DatePicker) I had in mind to disable the field and use an hidden field to store the data (disabled from ob...

IE6 CSS tooltip not appearing

I'm using a tooltip that works in FF, Chrome, and IE7-8, but in IE6 it doesn't appear. You can go to this page http://www.avaline.com/ Bags/ Eco-Friendly-Bags/R1500 and login with [email protected] password:test02, then hit the "add to cart" button and hover over the question marks to see (or not see) the tooltips. This is the relevant HT...

Background color of the main content on the html page disappears

It just makes me go mad. I can't realize what the problem is. Please have a look at the pixeli.ca/glass. There is a home page that looks good - white background of the main content and looks good. But all the other pages don't have white background so they look not the way they should look. All the pages have the same style sheet and the...

Animated background image in a hidden <div> doesn't load or loads not animated

Hello, I have spent the whole day trying to make a script which on "submit" hides the form and shows hidden with animated progress bar. The problem is that Internet Explorer doesn't show animated gif images in hidden divs. The images are static. I visited many websites and found a script which uses: document.getElementById(id).style.ba...

What's a good icon to represent a legend or a key for a diagram?

I'm implementing a small web app widget that shows a legend/key for a diagram (or chart/map/graph/whatever), but only during mouseover of the widget. It's basically just going to be a div with a background image. What would be a good icon that communicates "I show the legend" or "I am the legend" to the unfamiliar users? I'm looking for ...

IE 8 and jquery problem

I have such div: <div class="box"> <div id="myid" style="display:hidden;"> <p>some stuff here</p></div> </div> when I execute $("myid").slideToggle("slow"); on the html above (div "myid" is hidden) , if the content of has bigger height over box, my content overflows from the bottom of the "box" class, weirdly this doesn't happen ...

Fluid Design bugs in ie7

Hey guys, I've created a dummy layout for my latest design, but when I resize the window in ie7 to check that the min-width works, it kicks the content area to below the sidebar, whereas in all other browsers (including ie6) it behaves exactly as it should do. Demo Link Can anyone see what the problem is that's causing this random co...

Location of code when sending HTML Email

I'm trying to figure out where to put some code in an email. You know how you can get newsletters with styling and images, etc? I wanted to send some out but I cant figure out where to put the code. Do you add the images as attachments? Do you put the code in the body? or should you upload the .html file as well? ...

How to stop jQuery from returning tabs and spaces from formated code on .html() .val() .text() etc.

I've got an html table: <table><tr> <td>M1</td> <td>M2</td> <td>M3</td> <td>M4</td> </tr></table> and a simple jQ script: $('td').click(function(){ alert( $(this).html() ); }); That works just fine.... but in the real world, I've got several hundred table cells and the code is formatted improperly in places because of several p...

How to embed a google map with a changeable area?

I haven't worded this very well But basically, I'd like to embed a map on my site - but the area it shows will change. I've tried doing this, but it never seems to work as it will focus on the wrong area - the old area, rather than the new area. Basically, I'd like a google map code that uses $place as a location. Thanks. ...

Floated element not included in parent, causing margin-bottom problems

Right, so I've got a section of a page: <div class="article"> <div class="author"> <img src="images/officers/john_q_public_thm.jpg" /> <span class="name">John Q. Public</span> <span class="position">President</span> </div> <abbr class="postdate"> <span class="month m-01">Jan</span> <sp...

Would Like Multiple Checkboxes to Update World PNG Image Using Mogrify to FloodFill Countries With Color

Hi. I'm seeing in another forum if the best way to do this is with Javascript or Ajax but I'm wondering if there is an even easier simpler way. I'm trying to create a web service where users can check which countries they have visited from a list of 175 or so and a World map image would then instantly update with a filled color. There a...

How do I make the background image change on hover, for my span?

Suppose I have a span: <span class="myspan"></span> .myspan{ background: url(image.png) top left no-repeat; } How do I make it so that when people hover my span, it shows "image_hover.png"? ...

Is there a tool that analyzes the webpage and tells you what SEO you need to work on?

I'd like to know how to further optimize my site. THanks. ...

Adjust CSS of all cells of a specific table without giving each cell a unique id?

Is there any way to modify the CSS properties of one table's cells based on the table's ids, rather than specific child ids? I would like to change one table's appearance (giving each cell a colored border, for instance) one way, and another table another way, but I'd like to avoid specifying an id for each cell. To be clear, I don't n...

Native (non-jqueryui) way to set prompt() input field inline.

I might just be using the wrong keywords on Google, but what I have in mind is: -------------------------------- | What is your mailbox? | | | | [ ]@mail.example.org | | | | [OK] [Cancel] | -------------------------------- The idea bein...