html

Cloaking url but keeping sub-urls

I have a dot-tk (www.dot.tk) domain that redirects to a blog of mine. But I have a problem. If a visitor of the blog who have entered through the tk-redirection, navigates to a specific post or even follows a link that leads elsewhere, then the URL-bar doesn't change to reflect the change. It always show the tk-address only. I want sub-u...

Let keystrokes pass through flash?

On a page i have a flash file. I click it once to start something and i typically leave the page. When i get back i may want to press ctrl tab or w however it doesnt work because the flash file is catching the events. How do i make events pass through the flash so that the file acts like a normal button and will continue to allow me to p...

HTML numerical to UTF

How can i convert this $langClarContent = > &# 1059.,.,.,&# 1090.,&# 1077.,&# 1083.,Dokeos &# 1077., &# 1089.,&# 1080.,&# 1089.,&# 1090.,&# 1077.,&# 1084., &# 1079.,&# 1072., &# 1091.,&# 1087.,&# 1088.,&# 1072.,&# 1074.,&# 1091.,&# 1074.,&# 1072.,&# 1114.,., &# 1089.,., &# 1091.,&# 1095.,&# 1077.,&# 1114.,&# 1077., &# 1080., &# 1079.,&...

Scrolling with a styled unordered list (select box replacement)

My company had a website we're working on redone by a designer. It looks much better, but I've hit a snag implementing their design in HTML+CSS. They have a heavily styled <select> box, so much so that I couldn't recreate it with pure CSS. I found a solution that uses Javascript to replace the <select> box with a <ul>. This works almost ...

Should we always consider how page will look without CSS?

If yes then presentational elements would be helpful in this condition so should we use those? <b>…</b> , <i>…</i>, <big>…</big>, <small>…</small>, <tt>…</tt>, <hr /> These are valid tags ...

Hotspots show up in IE

I'm using a picture with polygonal hotspots. In IE the hotspots are visible and I do not want that effect. How can I prevent this? Thanks Go here: http://animactions.ca/Animactions/volet_entreprise.php with IE and select one ...

How do I show a scrollable list in jQuery Dialog?

How do I show a scrollable list in jQuery Dialog? ...

Should image size be defined in the img tag height/width attributes or in CSS?

Is it better coding practice to define an images size in the img tag's width and height attributes? <img src="images/academia_vs_business.png" width="740" height="382" alt="" /> Or in the CSS style with width/height? <img src="images/academia_vs_business.png" style="width:740px; height:382px;" alt="" /> Or both? <img src="images/a...

jQuery fade in/out on mouseover?

Hi, I have links in the following structure and I would like to know what the jQuery/css should be to hide the <img /> tags and fade them in on mouseover. The idea here is that the HTML <img> is hidden and fades in on mouseover to provide a smooth effect. Meanwhile a CSS background shows in the beginning. HTML: <div id="nav"> ...

How long can a webpage be?

Bit of a bizarre question, but does anyone know the actual limit to the length of a webpage, and why it is the limit? As an experiment, I'm using HTML and CSS to make a site that represents a journey to a scale of 1:1. I have a ul list of markers along the way that I have separated with large margins in the css. However, the longest mar...

Create link on page w/ web address stored in database

This seems like it should be easy, but I can't seem to figure it out. All of my google searches lead me to linking to databases which isn't what I want to do. I'm a complete web development newb. I've roughly followed the NerdDinner tutorial in creating my web app. One of my stored fields is a web address. On the Index and Details p...

Show google maps on mobile website

Is it possible to add google maps on a site designed specifically for the iPhone? I have never integrated maps in my websites before, so this question really goes more because of my inexperience. Using basic html and javascript at the moment. ...

Which PHP framework should I use when creating this type of website/application?

In the jungle of frameworks out there, I've come to the conclusion that I cannot simply determine a framework beforehand without considering the type of application/site I want to create. So I think I need a rittre herp with determining this one. This site is a heavy graphics site, where basically all of the content is presented in a sm...

browser compatibility

Possible Duplicate: Typical pitfalls of cross-browser compatibility Generally what are the main issues of browser compatibility come when we create a web page? ...

Strips Menu With JQuery

Hello, First of all, I am not an advanced JQuery developer, however, I have been creating what I call Strips Menu with JQuery, you can see it here by clicking the Preview link on top: http://jsbin.com/uwopu3/edit When I click on a strip, it promptly shows the contents relevant to hovered strip but I need sliding effect something that ...

My inputs wont let me move the cursor with the keyboard?

This is a wierd one, both inputs and text areas, cant move through the text with the left and right arrows? there's lots of javascript/jquery on the page so it's likely a plugin is overriding, but thought i'd see if anyone's ever had a similar experience or got any pointers before i wade through mountains of code! ...

Problem with background color on li tag

I am setting background color of an li element by the code below : $('#li123').animate({ backgroundColor: color}, 'slow'); It works fine but the color spans whole length of li. What do I do if I want it to span the text contained in the li only. ...

web page requires a reload before displaying javascript content... in all browsers other than MSIE.

Hi, in all browsers I've trid other than ms internet explorer, I need to reload before my slider menu is visable.. could anyone shed some light!? http://www.musical-transformations.com/gallery/index.html Thanks, ...

what is the difference between these two ul tags

hello something driver me crazy here i have a big HTML template which i can't post but the problem is that when i write ul tag like this everything works find <ul><li>something</li><li>something</li><li>something</li></ul> but when i write it like this i got +4 pixel i don't know from where <ul> <li>something</li> <li>something</li...

How to open link in other browser?

How to open link in other browser? For example: <a href="sample.html" >click to open in firefox</a> <a href="sample.html" >click to open in Safari</a> <a href="sample.html" >click to open in IE</a> <a href="sample.html" >click to open in Chrome</a> Is it possible? Any ideas or suggestion? Thanks. ...