Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
2answers
415 views

How do I make a “title” (tooltip, pop-up, alt-text) in a CSS to be used with SVG, without JavaScript

It is pretty easy to create a pop-up with the "title" attribute in SVG. But how do you achieve the same effect with CSS. This is for an illustration I'm making for Wikimedia and I strive to have most ...
7
votes
5answers
66 views

What are some good resources on developing a site that supports browsers with and without javascript?

I'm building a site that needs to work with browsers that support JavaScript and browsers that don't (or that have it disable). What are some good resources that explain good approaches in doing this? ...
5
votes
2answers
56 views

hide css class without js on hover

I have a html menu: <ul> <li><a href="#" class="active">Item one</a></li> <li><a href="#">Item two</a></li> <li><a href="#">Item ...
5
votes
3answers
585 views

What is the purpose of the Html “no-js” class?

I notice that in a lot of template engines, in the HTML5 Boilerplate, in various frameworks and in plain php sites there is the no-js class added onto the html element. Why is this done? Is there some ...
4
votes
6answers
296 views

Web Development Best Practices - How to Support Javascript Disabled

What is the best thing to do when a user doesn't have JavaScript enabled? What is the best way to deliver content to that kind of user? What is the best way to keep a site readable by search ...
4
votes
3answers
539 views

Apply CSS styles to an element depending on its child elements

Is it possible to define a CSS style for an element, that is only applied if the matching element contains a specific element (as the direct child item)? I think this is best explained using an ...
3
votes
1answer
130 views

Complex HTML forms

This question is not as hard as it is long, it is long because I suck at explaining things, any help from moderators in reducing the length of this question or improving it's title (while keeping it's ...
3
votes
3answers
104 views

CSS fluid columns (depending on content width)

Can anyone help me to find CSS solution (yep, no JS) to this problem: +---------+----------------------+-------------------------------+ | Fixed | Variable | Flexible width ...
3
votes
1answer
102 views

3 divs inside of a centered div using percentage

Good morning, I am attempting to create a centered 3 column layout (h1, h2, h3) inside of a centered container div which has a width of 90%. h1 and h3 are a fixed width b/c of the width of my ...
3
votes
2answers
540 views

Radio Buttons with different Names?

Does anyone have a no JavaScript way to make HTML radio buttons belonging to the same "group" have different "name" attributes? While I figure there isn't any way, I'm working on a site which needs ...
3
votes
2answers
936 views

Facebook Connect: with no javascript?

Is it possible to write a website that uses Facebook connect without JavaScript? I have a site set up that works great using XFBML but this (obviously) fails when I visit with JavaScript disabled. I ...
2
votes
3answers
640 views

Using Google +1 service without JavaScript

I would like to add a Google +1 icon to a website, but without using JavaScript. Is it possible? Is there some URL I can simply link to, to make it work?
2
votes
2answers
277 views

Is it possible to create a CSS-only accordion?

I'm thinking about using an accordion in a "please enable Javascript" page, but I don't know if it's possible with CSS only. I'm almost sure it is for most browsers, but I'm also fearing I'll face ...
2
votes
3answers
2k views

Checkbox 'off' value without JavaScript

Does anyone have a no JavaScript way to make HTML checkbox still submit a value? As in if you check it the form submission will include a value A but if it is uncheck it still contains a value B? ...
2
votes
2answers
3k views

CSS set default scroll position

Is there any way to set the scroll position to a default value? I know how to do it in javascript, for example with jquery: $("div#divWithScroll").attr("scrollTop",200); But I wanted to do it with ...
1
vote
3answers
68 views

Two divs filling up available space

I want to put two divs next to each other in one block of fixed width. The right div is variable length (unknown one line text). The left div contains an image background (nice dash) and must fill up ...
1
vote
3answers
44 views

Need help with css rules for hovering

Given the following html: <div> <div id="A1"></div> <div> <div id="B1" style="float:left;"></div> <div id="B2" style="float:left;"></div> ...
1
vote
2answers
83 views

How can I move the middle column to the left column?

http://jsfiddle.net/mnbayazit/zfBPQ/1/ Essentially I want [ 33% of remaining space | 100px | 67% of remaining place ] This is as close as I've been able to get so far... I'm trying to avoid ...
0
votes
3answers
60 views

Unable to stop browser navigation using $(“#tag”).click()

I am trying to create a button called SignIn that accommodates browsers without javascript, but doesn't navigate when Javascript is enabled. <script type="text/javascript"> $(function () { ...
0
votes
2answers
328 views

Indeterminate progress bar in HTML+CSS

I would like to create an indeterminate HTML+CSS progress bar so it looks like the one on Vista: I would like to: horizontally adjust it to progress bar width (minimum and maximum width may be ...
0
votes
1answer
91 views

Form with action that goes nowhere (not just back to page)

I'm currently working on a website that works without any javascript. I'm going to add in oohs and aaahs once I have all of the functionality I want using strictly html/css and form elements for ...
0
votes
3answers
52 views

Fastest way to handle a submit button with a variable in it?

I've got a form with a bunch of items. Beside each item is a "Remove" button. When one of buttons is pressed, I need to know which one so that I know which item to remove. The way I have it now, each ...
0
votes
4answers
1k views

How to open the page in new window using response.redirect in c#

Can anybody suggest how we can open the page in new window using Response.Redirect in c#, I know we can do it using response.write as given below: ...
0
votes
3answers
69 views

Apply css rules to other elements

I don't think there is a current SO question addressing this; but if there is please point me to it and I'll close this one. Anyways, suppose html like this: <div> <div class="a" ...
0
votes
1answer
370 views

Asp.Net - Button in repeater doesn't work when browser is set to no javascript - help!

I have a button in a rather complex repeater, it has to have UseSubmitBehavior="False" or I get the error: Invalid postback or callback argument. Event validation is enabled using in ...
0
votes
1answer
39 views

Making a non-javascript version of a portion of a form

So I have form with two drop down lists, the second of which is dependent on the first. For the sake of example let's say if they select "even" in the first drop down, they get 2,4 and 6 as the ...
0
votes
1answer
53 views

Use some CSS properties in many selectors without editing HTML or using JS

CSS: .bananaTrans { -moz-transition : all 1s ease-in-out; -webkit-transition: all 1s ease-in-out; transition : all 1s ease-in-out; } .bananaClass { color: yellow; } HTML: <div ...
0
votes
1answer
613 views

Do not scroll with anchor, simply change div?

Lemme explain my situation here: I'm trying to make a layout for a website. This goes in a small box, and can include HTML and CSS, yet not javascript. I have a small box inside this, with tabs to ...
0
votes
5answers
220 views

HTML form method with nice URL

I just want to know whether there is a way to answer this question with "Yes" without using JavaScript. What I want to do is have a search form that automatically generates URLs like ...
0
votes
1answer
153 views

Ajax in struts2

i want to write a simple Hello World program which shows Hello World when i click on some button using AJAX but without java script or jquery...i have searched alot but didnt found anything up to ...