Tagged Questions
The html-attributes tag has no wiki summary.
11
votes
4answers
2k views
target=“_blank” vs. target=“_new”
What's the difference between <a target="_new"> and <a target="_blank"> and which should I use if I just want to open a link in a new tab/window?
6
votes
7answers
1k views
What's the best HTML attribute to use to store information for jQuery to parse?
Must Support IE6 and must Validate vs XHTML Strict 1.0!
This is tricky to explain...
I'm using a generic class name to initiate a plugin feature on an associated element.
I also want to have ...
5
votes
1answer
2k views
In HTML5, with respect to tables, what replaces cellpadding, cellspacing, valign, and align?
In Visual Studio 2008, I'm seeing these warnings:
Validation (HTML 5): Attribute 'cellpadding' is not a valid attribute of element 'table'.
Validation (HTML 5): Attribute 'cellspacing' is not a ...
5
votes
1answer
124 views
Any programs to generate css classes from your html?
Just curious does anyone know a program or script to generate a style sheet(with blank values obviously) from the structure of your html document? Basically just pull out the ID's and Classes you set ...
5
votes
2answers
1k views
Django: How do I add arbitrary html attributes to input fields on a form?
I have an input field that is rendered with a template like so:
<div class="field">
{{ form.city }}
</div>
Which is rendered as:
<div class="field">
<input id="id_city" ...
5
votes
4answers
1k views
Alt attribute encoding with JavaScript
Html entities must be encoded in alt attribute of an image in HTML page. So
<img id="formula" alt="A → B" src="formula.png" />
will work well.
On the other hand, the same JavaScript ...
5
votes
1answer
744 views
COMPLETE list of HTML tag attributes which have a URL value?
Besides the following, are there any HTML tag attributes that have a URL as their value?
href attribute on tags: <link>, <a>, <area>
src attribute on tags: <img>, ...
5
votes
1answer
84 views
Do search engines add weight for microformats?
For example, if I had
<a href="http://www.example.com">My friend Bill</a>
or
<a href="http://www.example.com" rel="friend">My friend Bill</a>
Will Google for example give ...
4
votes
2answers
35 views
jQuery: Return Value of each instance of a specified attribute
I'm parsing through a web page and I need to return every single attribute VALUE (note: not element) of any element tagged with a specific attribute.
A page example is below. The structure and ...
4
votes
2answers
75 views
Does the order of HTML attributes have any effect on performance?
Is there any reason that relates to parsing time, layout, rendering time, style application, etc. to have HTML attributes in a certain (or consistent) order?
The order of HTML attributes does not ...
4
votes
3answers
563 views
ASP.NET MVC2 Not replacing underscores with dashes in HtmlAttributes
I've heard from a couple of different sources that when using HTML helpers in ASP.NET MVC2, one can create custom attributes with dashes in them (e.g. <a data-rowId="5">) by using an underscore ...
4
votes
2answers
123 views
When should I use the name attribute in HTML4/HTML5?
I know by reading the W3C documention for HTML4.01 and HTML5 that the "name" attribute originally existed as a property of the <a> tag to permit people to link to an anchor point within a ...
3
votes
2answers
321 views
JSF 2.0 strips out needed HTML5 attributes
I work with a JSF team doing the front end development. We're outputting an INPUT field and I need to include placeholder and a few data- attributes into the rendered tag. The JSF is stripping these ...
3
votes
1answer
604 views
Setting an attribute named “required” and any value, with JQuery, doesn't work
This doesn't work:
$("#elementId").attr("required", "true");
In both Chrome and Firefox, the DOM produces either required as the attribute (no value) or required="" (empty value).
And it doesn't ...
3
votes
1answer
197 views
How to escape value returned by a yield
I recently had a problem to escape value returned by a yield in a template.
In my layout, i yield the meta description so that i can define it from my template
<meta name="description" ...
3
votes
2answers
110 views
What are the javascript performance tradeoffs in adding id's to dom elements?
For example, I have a website which has a dynamically-generated segment of its dom which looks roughly like this:
<div id="master">
<div class="child"> ... </div>
<div ...
2
votes
2answers
531 views
Adding custom attribute (HTML5) support to JSF 2.0 UIInput component
I am trying to write a renderer which would process the placeholder attribute on an <h:inputText> component.
I headed to this path after reading JSF 2.0 strips out needed HTML5 attributes and it ...
2
votes
2answers
65 views
how can i remove a character from a class?
I want to remove x_ from every id and every class in a ol. This ol is generated from a form field so I can't get access to it.
if I save the field value in a variable, how can i remove these ...
2
votes
4answers
131 views
Is an ID allowed to be empty in an HTML tag?
Is the ID attribute on an HTML element allowed to be empty?
<div id=""></div>
I'm using a template where the ID of the element is set by a variable which may not always have a value and ...
2
votes
3answers
329 views
HtmlHelper and htmlAttributes help
I'm fairly new to MVC 3 and am using the Razor view engine. I'm using the Html.Hidden extension method to output input elements of type hidden. What I woudl also like to do is add a custom attribute ...
2
votes
2answers
294 views
What is the “data-sigil” HTML attribute?
I just came across a website that has "data-sigil" as an attribute for HTML elements like a, div, label, abbr.
It accepts a string value, like this:
<a class="a1class" href="/more.php" ...
2
votes
2answers
412 views
Grails - Set “disabled” attribute name and value in GSP
I´m trying to do this without success:
<g:textField title="${title}" ${disabled} />
I want to apply a disabled attribute, ONLY if the ${disabled} variable is TRUE.
I don't want to use ...
2
votes
3answers
26 views
Are there benefits to specifying OPTION elements with mirrored value attributes?
I'm wondering, is there a productive reason for doing this:
<option value="My Value">My Value</option>
As opposed to this:
<option>My Value</option>
In other words, ...
2
votes
4answers
113 views
Closing of Attribute Values in HTML and CSS
Three developers, Bob, Bill, and Bruno, start creating a website and they begin to argue about which way of writing HTML markup (and CSS) is best.
All Doctypes = <!doctype html>
Bob writes his ...
2
votes
4answers
1k views
Are single/double quotes allowed inside HTML attribute values?
I'm trying to set attribute value that contains a single quote:
var attr_value = "It's not working";
var html = "<label my_attr='" + attr_value + "'>Text</label>";
$('body').html(html);
...
2
votes
1answer
257 views
what is the meaning of jquery random attributes in html?
what is the meaning of these jquery random attributes in html and how jquery use them
any ideas please ??
2
votes
1answer
409 views
HTML Element, Custom Client Event
I have a composite control which emits HTML that looks like this
<span id="myControl">
<select id="myControl_select">
<option value=""></option>
<option ...
1
vote
1answer
106 views
How to enable the “results” attribute in <input type=“search”>?
I'm trying to make use of the results attribute of HTML5 <input type="search"> tags on Chrome, which should make for a "recent searches" funcionality.
I cannot manage to make Chrome show a list ...
1
vote
3answers
54 views
Testing all element nodes in the DOM for attribute existence
I'm trying to find if any of the tags inside a page contain a js event attribute, such as onload, onunload, onfocus etc, ...
To do so I have an array of events to check for (I think I have them all):
...
1
vote
1answer
215 views
Html.EditorFor, data annotations and html attributes for DateTime field
I want to use EditorFor for a DateTime field, because then I can use data annotations to describe the format (I do not want to include the time part). I also want to assign an html class attribute ...
1
vote
3answers
60 views
How should boolean attributes be written?
I've been reading some articles about HTML, XHTML, etc. In most of them (i.e. My preferred syntax style) say that boolean attributes should be written without any value, like this:
<input ...
1
vote
1answer
112 views
InfoWindow: Setting lang attribute inside div tag not working
I am trying to set language attribute to some value other than
"en" [say "ko"] inside a div tag. The content string that I create in
this way is being used to set the InfoWindow's setContent(). ...
1
vote
3answers
73 views
Is there a way to access a JavaScript event inside an onclick attribute?
Suppose I need to write an onclick handler in an attribute, like this:
<a href='#' onclick='DoSomething(); event.stopPropagation(); return false;'>
...</a>
I know this is bad form, ...
1
vote
1answer
45 views
is it possible to have HTML element attributes that span multiple lines?
e.g.
<div class="big
left
important"> some content </div>
Does anyone know if this breaks things / has good browser support?
cheers,
J
1
vote
1answer
273 views
TagBuilder.MergeAttributes does not work
I am creating my own helper in MVC. But the custom attributes are not added in the HTML:
Helper
public static MvcHtmlString MenuItem(this HtmlHelper helper, string linkText, string actionName, ...
1
vote
4answers
134 views
How can I use an href link within a “data” attribute - or rewrite it with jQuery?
I'm using the data attribute to show a credit for a photo on a site:
<div id="test" data-credit="name">
But how do I do use a link, like this?:
<div id="test" data-credit="<a ...
1
vote
2answers
265 views
Simulate text-overflow=“ellipsis” in CSS2
Is there any way to simulate text-overflow="ellipsis" using CSS2?
I found this solution that emulates text-overflow:ellipsis in firefox with CSS but it's not working.
I'm not interested in a ...
1
vote
3answers
3k views
HtmlAttributes on ASP.NET MVC 3 with Razor view in VB.Net
Can anybody tell me how do I add this htmlAttribute on MVC 3 Razor view?
New With {.watermark = "sometext", .title = "sometext"}
I tried the C# way but it's not working (@watermark) but it's not ...
1
vote
1answer
90 views
deleting text enclosed by a tag with particular attribute values from html file
I have an html file which has both English and Arabic text. I need to delete all the Arabic texts from the file.
I observed that all the urdu texts come inside a <p> or a <div> tag with ...
1
vote
4answers
235 views
Is it acceptable to use single quotes around values in HTML attributes? [closed]
Possible Duplicate:
HTML single quotes a “problem”?
As in,
<span class='classname'>Hi</span>
instead of
<span class="classname">Hi</span>
Works, ...
1
vote
1answer
659 views
Speed difference between anonymous class and IDictionary<string,object> for htmlAttributes in ASP.NET MVC
I am trying to optimize my ASP.NET MVC application using some techniques that include URL generation tweaking a la: ...
0
votes
2answers
34 views
Is it possible to make Combo box option unselectable without disabling it?
Since safari mobile browser do not support disabled="disabled" attribute hence I am looking for other way to make select box option look disabled may be through events or some other way around ?
...
0
votes
1answer
79 views
In Firefox 9 a HTML Table is hidden when it should be shown
Our Web application works fine in Firefox 8, but a few users have updated to Firefox 9 and now some HTML tables are hidden.
Firefox 9.0.1 is adding an extra hidden="" attribute to HTML.
So HTML like ...
0
votes
1answer
51 views
HTMLPurifier still strips allowed attribute
Using HTMLPurifier I tried to filter my user submission from an FCKEditor. My intention is only to allow some HTML tags such as p, img, a, etc with some their own attributes (such as align or style). ...
0
votes
3answers
46 views
Remove part of attribute value with jquery or javascript
There is a data parameter for a div that looks as follows:
<div data-params="[possibleText&]start=2011-11-01&end=2011-11-30[&possibleText]">
</div>
I want to remove the from ...
0
votes
2answers
85 views
XML node vs. attribute in Scala?
Remark: please consider XPath syntax dead here, thank you.
I have xml node (HTML actually), and I would like to get an attribute of it.
In C# (HTMLAgilityPack) I could get attribute object by name. ...
0
votes
1answer
56 views
Can HTML attributes have apostrophes
Due to a number of reasons I have ended up with some code that has the need to store JSON serialized objects inside of HTML attribute tags.
I have however run into a problem where one of my json ...
0
votes
3answers
143 views
Element-Mandatory Attribute declaration in XSD Schema:
I want to declare an element to be included in a complex type declaration, and the element has a mandatory attribute: "option=MyOption", but the value of the "option" attribute could be anything, ...
0
votes
5answers
413 views
jQuery check if Attr Class exists?
Wondering how to determine if the .attr('class') exists ? I am using the code
if(jQuery(this).attr('class') != undefined && jQuery(this).hasClass('myclass')) {
//Do something
}
But not ...
0
votes
1answer
78 views
How to default a select list to have no elements selected for use with jQuery bsmSelect plugin
I'm using the jQuery bsmSelect plugin to give my users a convenient way to select multiple options from a select-drop-down list. It works well, except I need it to start with nothing selected by ...