html

Inline wrapping of hyperlink text in HTML anchor tag

I'm trying to find a way to allow really long text in an HTML link to wrap while containing the link in a compact rectangle. Essentially, I want this: with a really, really Here is some text long link that wraps and here is some more text. around in a rectangle Instead of: Here ...

HTML Button "Push" Effect

i can't figure out what makes an html button element appear to be pushed (right click an html button and then hover on and off to see what i mean). the following two examples i've taken from other websites. the first has the typical button push effect. the second does not. .button { border:none 0; background-color:Transparent; } .bu...

jQuery question

I am using jquery so that when the user clicks a link I get the id of said link then use it to select a li item with the same id and animate it. Well, at least that's what I'm trying to do...so far I have: $(function(){ $('#slider-buttons a').click(function(){ var x = $(this).attr('id'); var y = $('#slider-stage-list l...

Is there an onSelect event or equivalent for HTML <select> ?

I have an input form that lets me select from multiple options, and do something when the user changes the selection. Eg, <select onChange="javascript:doSomething();"> <option>A</option> <option>B</option> <option>C</option> </select> Now, doSomething() only gets triggered when the selection changes. I want to trigger doSomethi...

I need some guidance on payment gateways

I've never done anything with payment gateways, can anybody give me suggestions? ...

Html scroll: how to avoid it to "cut" my inner elements

Hi, this question is for an autocomplete drop down list I have to do that will fire while you're writing in an html textbox. It basically consists of a div containing the suggestion elements, each of them being a div as well. I got to the point where it's begining to work properly but now I added a vertical scroll to the containing di...

Problem with SWFObject in IE

I'm having a problem with SWFObject in IE. The swf-file shows, but everything below the swf doesn't. Here's the URL: http://timkjaerlange.com/wip/co2penhagen/ Any ideas to what could be wrong? ...

Frameset won't work in IE8

I have constructed a frameset which is meant to center a webpage in the middle of the browser window. <html> <frameset rows="100%,567px,100%" border="0"> <frame src="blank.html" noresize="noresize" scrolling="yes"> <frameset cols="100%,1128px,100%" border="0"> <frame src="blank.html" noresize="noresize"...

How to: Back button support "Ajax"

I have an asp.net ajax website, it full of things happen on the same page without page reload, such as sorting records, paging,... When the user go to another page in the same site and press the browser back button, how can i make the browser save the page state to return to it with the preselected options such as sorting option, page nu...

Future of Internet Explorer

It's been rumored that IE8 will be Microsoft's final release of IE (When I asked this question, someone pointed me to an article on Slashdot -- Yes, I know, it's Slashdot, but it cited an article on InfoWorld -- in any case, there seems to be some legitimate concern regarding Microsoft's continued support for IE, at least in its present ...

How write to page without document.write length limitation

I'm very much not a javascript/html/css person. Even so I find myself in the position of having to do a webpage. It's static the only thing you can do on it is click on flags to change dispay-language based on a cookie. If the cookie says "this" I write text in one language, and if the cookie says "that" I write in another language. Th...

Does anyone bother with Dublin Core anymore?

As the question states, is there any point adding Dublin Core meta-tags to your HTML head? Or has sitemap.org removed the use for most of this (though it only replaces some of the tags) I ask this as most sites I visit don't seem to use DC metatags in their source. I'm interested in whether I need them for a site that will be used mos...

How can I remove every third HTML tag in Perl?

Hey everybody, This is a quickly cooked up script, but I am having some difficulty due to unfamiliarity with regexes and Perl. The script is supposed to read in an HTML file. There is a place in the file (by itself) where I have a bunch of <div>s. I want to remove every third of them -- they are grouped in fours. My script below won...

SEO for common misspellings

Here's the general question that I'm asking: How do you optimise your website so that searches using common misspellings of your name find their way to you? And my specific situation: At my company, we sell online education courses. These are given a code of two letters followed by two numbers, eg: BE01, BE02, IH01. These courses have ...

Iframe is not working in Firefox and IE

I am developing a application in grails which uses lot of ajax.In one part I used the following code : <iframe id="hidden-upload-frame" style="border:none;height:25px;width:100%;" onload="${remoteFunction(action: 'list', controller: 'file', update: [success: 'fileDomain', failure: 'fileDomain'])}"> </iframe> <div id="fileDomain"> </di...

Alternative to the HTML Bold tag

Okay, so I know that in HTML you can use the <b> tag, but isn't there a "weight=bold" attribute that I can use in the <p> tag? Or is that in CSS, or Javascript? ...

How can i change the background image of a list item

I want to change my <Li> bgImage onMouseOver using jQuery But image is in three div tags ...

Website Spiders / Robots removing spaces in filenames

Do certain spiders/robots remove spaces from filenames and hence should spaces in filenames be avoided in websites? ...

where to put page navigation links

I'm wondering what are the benefits of having your top row of 'important' links/buttons on a web page duplicated at the bottom. Traditionally the bottom of forms or pages has been for boring stuff like site maps and privacy information; but; in pages where you scroll down many pages (that wrote funny) it is a pain to have to return to t...

Flash over flash - problem

I have flash like a background on my page and all content on page is in the html tags witch is over that flash, and that works very nice. A cover div for that flash have a fixed position (position:fixed;) in style, that is important for scrolling feature. My problem is in following when I try to include additional page, in iframe on th...