The html-attributes tag has no wiki summary.
1
vote
2answers
46 views
ID Attribute has Brackets arround it?
I'm adding a Greasemonkey script to spice up a page where I work at, but I'm running into problem. I'm looking to add default values into form fields so every time I fill out the form I don't have to ...
0
votes
2answers
43 views
escape any string from database to store in HTML id attribute that is readable with jQuery
I'm making a custom sorting tool for my custom gridview.
I use jQuery ui $.autocomplete() to find DISTINCT VALUEs from a COLUMN in a TABLE.
I then add the selected values to a jquery ui ...
2
votes
3answers
72 views
get custom attribute from html tag
this is my code:
<span class="button small pop1" data-bpopup='{"transition":"slideDown","speed":850,"easing":"easeOutBack"}'>Pop it up</span>
How can I get data-bopopup attribute with ...
0
votes
2answers
344 views
How to add a second css class with a conditional value in razor MVC 4
While Microsoft has created some automagic rendering of html attributes in razor MVC4, it took me quite some time to find out how to render a second css class on an element, based on a conditional ...
0
votes
1answer
23 views
JTidy and boolean attributes
There is radio button like next,
<input type="radio" name="test" value="false" checked/>No
After tidy's parsing I have node just with 3 attributes, and its problem.
How to configure tidy to ...
2
votes
2answers
53 views
Is lang=unknown attribute valid?
Given an HTML document in a specific language (english).
I have defined a lang attribute on the tag :
<html lang="en">
Some texts in the page are written in another language (for example ...
0
votes
2answers
75 views
php space in href link [duplicate]
php code
echo "<td><a href=?V*".$row['rec_title']."> ". $row['rec_title'] . "</a></td>";
html code
<a href=?V*Venison with Frumenty(British)> Venison with ...
3
votes
5answers
142 views
quotation havoc while posting data in html attribute
I want to post some data as an html attribute. Suppose there is a rails variable
@fields = [{:name => "id", :type => :integer}]
I want to post in the page for use with jquery's .data(). So ...
1
vote
1answer
92 views
XPath selecting attribute fails on Chrome
Here's a small test I ran with expect.js:
describe('xpath', function () {
it('finds attribute nodes', function () {
$(document.body).append('<string fooBar="bar"><data ...
4
votes
2answers
76 views
Can the HTML 'class' element attribute contain line breaks?
Can the 'class' attribute of HTML5 elements contain line breaks? Is it allowable in the specs and do browsers support it?
I ask because I have some code that dynamically inserts various classes into ...
1
vote
1answer
50 views
GWT - Global clickHandler to work on HTML class attribute elements?
I have a button which I add an HTML class and the java class clickHandler to:
Button someButton = new Button();
someButton.getElement().setClassName("someClass");
someButton.addClickHandler(this);
...
-1
votes
2answers
44 views
How to include html attributes in an asp button that is run at server?
I want to add some html attributes to dynamically created asp buttons using c# so that i can use them to interact with the buttons using jquery.
I basically need to have class and rel as attributes of ...
0
votes
2answers
75 views
HTML Custom attributes compatibility with mobile devices?
Does anyone know if I could use custom HTML attributes in a Web Page, most of mobile devices could read it? or some devices will omit attributes as a default way? In other words: Most default ...
-1
votes
2answers
304 views
jQuery - Check if a container div has a child with a specified attribute value
I want to be able to check if a container div has a child in it with an attribute of a particular value and also how many instances exist.
For example, if I had the following HTML:
<div ...
0
votes
1answer
53 views
get DomXPath value by attribute “name”
I'm trying to get CIK codes from EDGAR. They don't give ids to their elements, but they at least give a name.
In this case, when there's a result, the page will have a hidden with name="CIK".
I've ...
1
vote
1answer
69 views
Using different HTML encodings depending on context for IHtmlString
If you look at anti-XSS libraries they typically have different encodings for HTML content and HTML attributes. For instance using Microsoft's WPL implementation:
<@ Imports ...
0
votes
1answer
265 views
HTML element attribute names with hyphens are auto-converted to camelcase
I'm building a custom AngularJS directive to create a google map, and I've stored some of the google map options in custom attributes within my tag:
<googlemap zoom-control="true" ...
2
votes
2answers
330 views
How do you use templates to generate dynamic HTML tag attributes in meteor?
I am using a Template to Generate HTML Tag Attributes in Meteor, but is seems to be broken. I can't put a template inside an HTML tag in meteor and I want to know why.
I'm using meteor-router for ...
0
votes
1answer
846 views
MVC4 CheckboxFor HtmlAttributes issue
I have a checkbox like this with defined value and text.
@Html.CheckBoxFor(model => model.UserGroup.administration, new[] { new SelectListItem { Text = "True", Value = "1" }, new SelectListItem { ...
1
vote
1answer
83 views
accept-charset attribute in html form
The accept-charset attribute specifies the character encodings that are to be used for the form submission . This attribute overrides the default encoding of html page specified in the header field of ...
2
votes
2answers
1k views
How to get rid of sizset and sizcache attributes from jQuery?
I am already aware of what sizcache and sizset attributes are, but my concern is about their multiplication in our web application. I explain : We developed a "home brewed" WYSIWYG html editor using ...
0
votes
3answers
113 views
How can I get id,class or name attr an element with jquery
I'm new in jquery. How can I get name,ID or class name an element with jquery.I'm trying as;
<div class="className" onclick="getname();"></div>
<div id="idName" ...
0
votes
1answer
107 views
About the Title/Alt attributes;
I hope I can post this.
I understand the the purpose of the title and alt attributes, but I just do not understand the best use for them or if I can use the same title/alt more than once.
For ...
0
votes
1answer
143 views
single quotes of html attribute automatically get replaced with double quotes
If I use a single quoted attribute in a django template like this:
<button data-json='{"color":"red"}'>click</button>
it automatically gets replaced with:
<button ...
0
votes
1answer
145 views
Using target=“_blank” for anchor no longer returns a validation error in a html5 doctype [duplicate]
Possible Duplicate:
Is it alright use to target=_blank in HTML5?
I have this.
<a href="#foo" class="external" target="_blank" title="foo">www.foo.com</a>
Previosuly the ...
4
votes
2answers
119 views
`img` element with `lang` attribute: language of the image itself?
(I'm interested in HTML 4.01 and HTML5, if there should be differences)
Does the lang attribute on an img element apply to the src attribute, too? Or is it only for the alt and title attributes?
...
5
votes
4answers
100 views
Is it bad practice to use the html class attribute as a javascript handle
I often need to select multiple elements at once with jquery... to do this I usually just add a class to all the elements I'd like to select and then use jquery to select by class.
Is this a bad ...
0
votes
1answer
265 views
mvc3, editor template, css clas, maxlength and size
I have an editor template as following but class, maxlength and size attributes are not getting to the source.
@using System.Globalization
@model DateTime?
@Html.TextBox("", (Model != null ...
1
vote
2answers
144 views
How many ways are to call a javascript from html?
How many ways are to call a javascript code? First there is the typical <script> tag then there are the attribute of some tags, onload="" for the body tag, href="JavaScript:" of a tag, ...
4
votes
1answer
3k views
What's the difference between novalidate and formnovalidate attributes of HTML5?
From w3c schools we have these definitions:
novalidate:
When present, it specifies that the form-data (input) should not be
validated when submitted.
formnovalidate:
When present, it ...
1
vote
2answers
1k views
Telerik MVC Grid: Row specific content in a HtmlAttributes
Is it posible to use row specific content into HtmlAttributes?
I got this cell with its content (o.ArrivalTime), when i move my mouse over it i'll like it to show the content from a other element ...
3
votes
1answer
31 views
How to Append attribute by using HtmlAgilitiPack?
I'm trying to make a new attribute in HTML tag by using HAP library:
HtmlDocument doc = new HtmlDocument();
doc.Load(PATH);
HtmlNodeCollection nodes = doc.DocumentNode.SelectNodes("//input");
...
2
votes
4answers
747 views
Jquery submit button not disabled when no text in input area
I have a text area in a form that has a character limit and I want to disable the submit button if the character limit is exceeded or if there are no characters entered. When the user enters some ...
0
votes
1answer
86 views
custom attributes selecting and assigning values [closed]
<ul class="slist single required" id="list-fieldtype" data-vt-name="list-fieldtype" >
<li style="float:none;"><a class="sbox selected" data-vt-value="type_text" ...
1
vote
2answers
230 views
Convert Upper case html attributes to lower case html attributes using regularexpression
I am trying to convert uppercase html attributes to lower case in order to make my document to meet XHTML 1.0 ADA compliancy standards.
But i am not able to get the desired output.Below is the code ...
0
votes
1answer
273 views
Simple rollover image in c#
I'm trying to add a rollover image to a test DotNetNuke page I'm working on but can't seem to get the syntax right (totally new to c#). This should be a simple one for anyone with any experience of ...
1
vote
2answers
551 views
Syntax for using C# to create multiple HTML attributes via attributes.add
This is long-winded but should be easy for one of you knowledgable chaps to workout.
I have a DotNetNuke webpage with a dynamic login link. If you are not logged in the link will be 'login' and have ...
0
votes
1answer
51 views
asp.net: Is there a way to suppress HTML output of “ID” attribute when using runat=“server”?
The new .NET v4 offers some great ways to customise output of control IDs, so they're clean and easier to use with JavaScript.
However, I'd sometimes like to completely suppress the output of a ...
2
votes
1answer
205 views
How can I preserve case of element attributes?
I'm using jQuery to create an XML document on the fly by utilizing the document.createElement function. This works great for creating the structure as I am able to utilize the .appendTo function to ...
0
votes
1answer
217 views
Can the aria-live attribute of a given element itself be set dynamically with javascript?
More specifically, if it is set with javascript will the screen reader/AT software still pick up the attribute and correctly announce any changes within the element to the user even though it was not ...
10
votes
5answers
5k views
Creating a canvas element and setting its width and height attributes
I was just trying to do the following in jQuery:
var newCanvas = $('<canvas/>',{'width':100,'height':200,'class':'radHuh'});
$(body).append(newCanvas);
This is working (kind of) and generates ...
2
votes
1answer
105 views
Why are some attributes not found in intellisense?
I can't see certain HTML attributes such as tabindex or onblur for standard divs in intellisense - and when writing them at design time they're underlined. However - they work fine when debugging.
...
1
vote
1answer
825 views
jquery regex replace href
I have this structure:
<ul>
<li><a href="mydomain/site/location/paris/">Paris</a></li>
<ul>
<li><a ...
4
votes
4answers
926 views
Is it okay to add id/class to <link> tag?
Is it okay to do this?
<link rel="stylesheet" href="css/mobile/load.css" id="stylesheet_mobile" />
so I can use JavaScript to dynamically disable stylesheets?
1
vote
2answers
2k views
Adding custom attributes to an asp:CheckBox control
I am trying to add a custom data-required attribute to an asp Checkbox control, it works fine for all other controls I've used it on, but on checkboxs it renders the checkbox inside a span that has ...
0
votes
3answers
348 views
access multiple html data attributes with jQuery 'this'
Ok, the title might be a little confusing. Let me explain.
<div class="book">
<h3>Name of Book</h3>
<p>
<span data-notmobile="Author"></span>Rajesh ...
1
vote
1answer
182 views
Attribute selector on image fails in IE7
When trying to target an image based on it's width attribute value it works in all versions of IE except version 7.
Example here: http://jsfiddle.net/mGcE5/
Anyone got the same experience or ...
0
votes
4answers
1k views
Retrieving HTML data-attributes using jquery
How can i get the values stored in the data attributes using jquery ?
<div class="sm-tot" data-ts-speed="500" data-ts-interval="4000" data-ts-newVal="5000" >
0
votes
1answer
170 views
Not able to DataBound the `Style` attribute in GridView
Not able to DataBound the Style attribute
Style='<%# Eval("LeftPadding","padding-left:{0}") %>'
Full Code
<asp:TemplateField HeaderText="Report Item" SortExpression="ReportItem">
...
1
vote
2answers
485 views
How can I set HTML attributes from an anonymous type?
I have a C# helper class that injects buttons into my MVC application. The code emits HTML via an MvcHtmlString, which is constructed like this:
foreach (var b in _buttons)
{
...




