Tagged Questions
The element tag has no wiki summary.
29
votes
12answers
27k views
Select a random N elements from List<T> in C#
I need a quick algorithm to select a random 5 elements from a generic list. For example, I'd like to get a random 5 elements from a List.
13
votes
14answers
62k views
Removing an element from an Array (Java)
Is there any fast (and nice looking) way to remove an element from an array in Java?
12
votes
4answers
11k views
Jquery counting elements by class what is the best way to implement this?
Ok what i'm trying to do is to count all of the elements in the current page with the same class and then i'm going to use it to be added onto a name for a input form. Basically i'm allowing users to ...
12
votes
5answers
4k views
“img” elements: Block level element or inline element?
I've read somewhere that IMG elements behave like both. If correct, could someone please explain with examples?
11
votes
4answers
8k views
If element exists, do X (jQuery)
I currently do this to check if an elements exists:
if ($(".element1").length > 0 || $(".element2").length > 0 {
...stuff...
}
Is there a better way to rewrite the same? I mean, ".length" ...
9
votes
5answers
2k views
jQuery - Best Practice for creating complex HTML Fragments
Is there a general best practice for creating somewhat complex HTML elements in jQuery? I've tried a few different ways.
First I tried using createElement and chaining alot of those together with ...
9
votes
2answers
6k views
jquery: find element whose id has a particular pattern
I am trying to find a span element who has an id in a particular pattern. Its main use is to find certain elements rendered by an asp.net (aspx) page which is derived from a master page.
9
votes
4answers
39k views
jquery selector can't read from hidden field
(answers aggregated into another question)
The following jquery 1.3.2 code works:
<input type="select" value="236434" id="ixd" name='ixd' />
<script>
console.log( $('#ixd') );
...
9
votes
7answers
4k views
How may I reference the script tag that loaded the currently-executing script?
How can I reference the script element that loaded the javascript that is currently running?
Here's the situation. I have a "master" script being loaded high in the page, first thing under the HEAD ...
8
votes
1answer
2k views
In XPath how to select the element content
Is there a way of writing an XPath expression to select the content of the element.
e.g.
<Element>xxx</Element>
Assuming I can write XPath (/Element) to get Element how do I tweak the ...
8
votes
10answers
9k views
How to center html element in browser window?
How to place some html element, say div, in a middle of a browser window (not page, not screen)? Not depend on browser window size, screen resolution, toolbar layout, etc. E.g. I want it to be in the ...
7
votes
3answers
7k views
WPF Get Element(s) under mouse
Is there a way with WPF to get an array of elements under the mouse on a MouseMove event?
6
votes
3answers
201 views
jQuery - Best way to hide element? ( to prevent the element from flashing before actually hiding it )
I remember that at some point Opera ( Mostlikely it was Safari instead. ) had a problem that if you used .hide() on element, it would flash briefly before it would actually hide the element.
Now if ...
6
votes
2answers
2k views
One element array in struct
Why some struct uses a single element array, such as follows:
typedef struct Bitmapset
{
int nwords;
uint32 words[1];
} Bitmapset;
To make it convenient for latter dynamic allocation?
6
votes
7answers
394 views
Is there a way to create your own HTML element?
Is there a way to create your own HTML element? I want to make a specially designed check box.
I imagine such a thing would be done in JavaScript. Something akin to document.createHTMLElement but the ...
6
votes
4answers
2k views
How to remove all the Null elements inside a generic List in one go?
Is there a default method defined in .Net for C# to remove all the elements within a list which are NULL?
List<EmailParameterClass> parameterList = new List<EmailParameterClass>{param1, ...
6
votes
5answers
1k views
6
votes
4answers
1k views
jQuery: Check if jQuery object contains exact DOM element
I have a reference to a DOM element, and a jQuery object which is the result of a selector, and I want to check if that specific DOM element is in that jQuery object. Short of looping through the ...
6
votes
3answers
2k views
Is there a style selector in jQuery?
If I want to select every image which it's alt is Home for example, I can do something like this:
$("img[alt='Home']")
But how can I select every elements which their width CSS property is 750px ...
6
votes
3answers
19k views
“element.dispatchEvent is not a function” js error caught in firebug of FF3.0
i am getting the following error while loading my index page in FF3.0. Sorry, i am unable to paste the script here as it is 2030 lines of code.
element.dispatchEvent is not a function
On ...
6
votes
1answer
5k views
Get form elements by name?
I would like to style all of the radio buttons with the same name in a form easily in a nice Prototype or jQuery-style shortcut.
$('billship').select('name:shipType') or something like that.
Does ...
5
votes
1answer
81 views
What are the different ways of creating elements
Say I want to overwrite form.elements on all forms (current and future).
Motivation
This question on polyfilling RadioNodeList could be solved by intercepting all form elements and manually writing ...
5
votes
6answers
544 views
Counting occurences of Javascript array elements
In Javascript, I'm trying to take an initial array of number values and count the elements inside it. Ideally, the result would be two new arrays, the first specifying each unique element, and the ...
5
votes
3answers
5k views
Javascript check if element exists in the dom
Hello good people of stack overflow,
I would like to pick your brain. My question is this: how do you test an element for existence without the use of the getElementById method. I have setup a live ...
5
votes
4answers
306 views
In <head>, which comes first: <meta> or <title>?
In head, which comes first: meta or title?
I was reading this:
This [meta] tag should be the first in the
HEAD section, because the server will
process the text above as ASCII with
no ...
5
votes
5answers
793 views
jquery, add variable to element?
I have a question regarding jquery. I have a li that slides out, now I want to remember if it has slided out so I want to set a boolean variable: slidedOut. Is it possible to simply add it to the ...
5
votes
4answers
300 views
multiple elements with similar css
I have multiple html elements. They use very similar css styles. Only difference is border style (one element has all but left border, another all but right etc).
So far, i used to create several ...
5
votes
3answers
453 views
Javascript: Check if Element has Changed
I want to know, if it's possible, how to check in javascript if an element has changed or an attribute of it?
I mean something like window.onhashchange for an element something like:
...
5
votes
4answers
2k views
c++ multiply vector elements by a scalar value using STL
Hi I want to (multiply,add,etc) vector by scalar value for example myv1 * 3 , I know I can do a function with a forloop , but is there a way of doing this using STL function ? something like the ...
5
votes
3answers
15k views
Hide an element's next sibling with Javascript
I have an element grabbed from document.getElementById('the_id'). How can I get its next sibling and hide it? I tried this but it didn't work:
elem.nextSibling.style.display = 'none';
Firebug error ...
5
votes
2answers
1k views
JQuery fadeIn() on DOM element creation?
How do I create a DOM element in JQuery and fade it in to show up, instead of having it show up immediately?
I try this:
var myDiv = "<div>Hello!</div>"
...
4
votes
5answers
189 views
How to find out what type of dom element is?
e.g. if i have this:
<div id='mydiv'>whatever</div>
then let say in jQuery, how can I find out that the dom element with id "mydiv" is a DIV or is some other element type.
e.g.
...
4
votes
1answer
85 views
Calling an undefined array element is showing a value of another defined element
When calling an undefined element of an array, it is showing me a value of another defined element.
Example of array structure:
$array = array(
'a' => array(
'b' => 'c'
)
);
...
4
votes
2answers
208 views
Take screenshot from WPF
Is it possible to take screenshot of the single element on WPF form? I need to take screenshot of a "border" tool and its child.
4
votes
2answers
109 views
One <span> per character in web-based text editor
I'm developing a web-based text editor without any contentEditable, textarea or input things. The biggest portion of my work is to measure widths of text on the left (right) side from the current ...
4
votes
8answers
857 views
Pull elements from next foreach item in PHP?
I'm doing a PHP 'traffic light' style warning system for my website, that basically says' if there is X percentage change between the current array entry and the next one, throw an error'.
So, I'm ...
4
votes
4answers
797 views
Self-closing tags (void elements) in HTML5
Step 6 of 8.1.2.1 Start tags of the HTML5 spec says that void elements may have a single / character. I think this is so it's easier to migrate sites that are XHTML over to HTML5.
What's the best ...
4
votes
5answers
186 views
is it prudent to use html 5 elements considering older browsers?
I'm thinking of things like <header>, <footer>, <article>, <section> and the html5 doctype.
Is there any benefit to designing pages that way now? How will older browsers see ...
4
votes
1answer
148 views
How to restore the original order of xsd:elements in xsd:sequence wrappers when websphere is upgraded?
So, there's a project around these parts that's pretty old. It's using Java 1.4 and XFire to produce code-first web services (I know, I know, best practices...). Anyways, the heads have recently ...
4
votes
3answers
150 views
Why does facebook have random element IDs?
I have noticed that facebook has random element IDs for every element - including elements that have no unique element id.
<div id="__w2_YvdN1r2_loading">blah</div>
Any ideas why they ...
4
votes
3answers
787 views
do touch events not work with text-input elements in iPad Safari?
In iPad Safari, I have programmed a DIV's touch-events so that when you touch inside the DIV and hold your finger there for 500ms, the DIV's background color changes.
When I try to move the code over ...
4
votes
1answer
572 views
How to Create Element in XSLT When Copying Using Templates
I'm trying to create an element in an XML where the basic content is copied and modified.
My XML is something like
<root>
<node>
<child>value</child>
...
4
votes
5answers
7k views
How do i make a “div” button submit the form its sitting in?
I have ASP.Net code generating my button's HTML for me using divs to get it to look and behave how I want. This question is regarding the HTML produced by the ASP.Net code.
A standard button is easy, ...
4
votes
4answers
992 views
How to get the innerHtml, including the tag, using jQuery?
Sorry, if the title is too obscure ;D.
Actually the problem is, lets say i am this code.
<span id="spanIDxx" style="blah-blah">
<tag1>code here </tag2> sample text
...
4
votes
4answers
3k views
Lisp: Get Last Element of each list
help please..say i have a list ((3 4 5) (d e f) (h i j) (5 5 5 5)) ) how can i get the last element of each list in such a way that the output would look like this (5 f j 5). Thanks in advance!
3
votes
2answers
40 views
What is this Toolbar-Style Cocoa UI Element?
I've seen this toolbar-like UI element in a couple of apps, and I'd like to know if there's a standard Cocoa object for such an element.
Xcode:
ColorSchemer:
CornerStone:
If a standard Cocoa ...
3
votes
3answers
50 views
How to select element that doesn't exist yet (jQuery) and change its style?
Below is my code. I'd like to change background color of #preview div but it always fails to select #preview. It seems that it doesn't exist when script executes. Other jQuery script creates it later ...
3
votes
4answers
59 views
I'm struggling to get xsl:element to output anything
I have tried the following xml (SimpleSampleInput.xml), which refers to SimpleTransform1.xsl. I have used both Firefox and Xalan to transform the xml, rendering it as SVG. It seems that both give the ...
3
votes
2answers
93 views
Get element type with jQuery
Is it possible, using jQuery, to find out the type of an element with jQuery? For example, is the element a div, span, select, or input?
For example, if I am trying to load values into a drop-down ...
3
votes
1answer
110 views
Get width from the center of an element to the edge of viewport
Essentially the idea is to make Element-B and Element-C to cover the area horizontally starting from center of Element-A and ending at the edge of viewport.
So, I guess i want to get the distance ...