Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
6answers
357 views

What does <link> tag do besides including stylesheets?

I know that the HTML <link> tag is used for attatching stylesheets, but looking at the W3CSchools tag reference, it has many other values for the rel attribute. I've looked all over the place, but ...
8
votes
4answers
428 views

Why does the <link> ‘title’ attribute cause browsers to ignore my styles?

The following html document (together with the CSS) fails to render the styles in b.css. <!doctype html> <html> <head> <link rel="stylesheet" media="screen" ...
5
votes
1answer
137 views

How can an external jQuery templates be loaded

I have a large number of jQuery templates taking up space in my <head> section ("text/x-jquery-tmpl"). I would like to move these tags to an external file. I was hoping I could do something ...
4
votes
3answers
1k views

Self closing Html Generic Control?

I am writing a bit of code to add a link tag to the head tag in the code behind... i.e. HtmlGenericControl css = new HtmlGenericControl("link"); css.Attributes["rel"] = "Stylesheet"; ...
2
votes
2answers
109 views

Masterpage CSS link can't resolve ~

I'm working on a web interface in C# ASP.net. If it matters, I'm using XHTML 1.0 Transitional. This website has a masterpage thing going, and that's where the problem came in. When I used a real ...
1
vote
1answer
169 views

Getting the value from a Select tag (Grails)

I'm having a problem getting the select tag to work for me in Grails. Basically, I am trying to get a value from the select field and use it to sort a list being displayed on the gsp. The select tag ...
1
vote
1answer
294 views

problem treating a jsp like css in firefox, chrome

I am writing a web application for use by multiple organizations which requires custom styling depending on which customer is using my page (the page is "branded" for different companies). Basically, ...
1
vote
3answers
636 views

How can I get the href of a <link> tag using jQuery?

I've seen lots on how to do this with an tag, and I have no problem doing it with that one, but I can't seem to retrieve the href attribute of a <link> tag. Even trying to grab the link tag at ...
0
votes
0answers
56 views

Stylesheet_link_tag not functioning properly. No idea where the bug is

<%= stylesheet_link_tag 'blueprint/screen.css', :media => 'screen' %> <%= stylesheet_link_tag 'blueprint/print.css', :media => 'print' %> <%= stylesheet_link_tag 'custom', :media ...
0
votes
1answer
627 views

Grails - Language prefix in url mappings

Hi there im having problem with language mappings. The way i want it to work is that language is encoded in the url like /appname/de/mycontroller/whatever If you go to /appname/mycontroller/action it ...