Tagged Questions
The elements tag has no wiki summary.
38
votes
5answers
11k views
Click through a DIV to underlying elements
I have a div that has a transparent background, and a border - sort of like an actual window, window-frame, and transparent walls. Under this, I have more elements.
Currently, I'm able to click the ...
22
votes
16answers
2k views
What is the purpose of anonymous { } blocks in C style languages?
What is the purpose of anonymous { } blocks in C style languages (C, C++, C#)
Example -
void function()
{
{
int i = 0;
i = i + 1;
}
{
int k = 0;
k = k + 1;
}
}
Edit - ...
18
votes
10answers
989 views
Best practices: When should I use elements and when should I use attributes?
Which would be the correct format for this XML data, are they equivalent or are there trade offs between the two?
1.
<sitemap>
<category name="Animals">
<section ...
10
votes
5answers
7k views
Number of elements in a javascript object
Is there a way to get (from somewhere) the number of elements in a javascript object?? (i.e. constant-time complexity).
I cant find a property or method that retrieve that information. So far I can ...
9
votes
10answers
899 views
Should I use Elements or Attributes in XML?
I am learning XML from W3schools.
Here:
hXXp://www.w3schools.com/xml/xml_attributes.asp
The author mentions the following:
XML Elements vs. Attributes
<person sex="female">
...
8
votes
3answers
155 views
Java: Can I use two different names in an enum to count as the same thing?
I have an enum class with the cardinal directions(North, East, South, West):
public enum Direction {
NORTH,
EAST,
SOUTH,
WEST;
}
Is there a way to be able to use multiple names for ...
8
votes
6answers
6k views
Map a 2D array onto a 1D array C
I want to represent a 2D array with a 1D array. A function will pass the two indicies (x,y) and the value to store. These two indicies would represent a single element of a 1D array, and set it ...
7
votes
1answer
448 views
HTML5 empty elements
By empty I mean the following:
<link rel="stylesheet" href="reset.css" type="text/css" />
Been using XHTML transitional for several years now - and to validate properly the trailing /> is ...
7
votes
2answers
5k views
jQuery select elements on 1st “level”
I want to select only the elements on the first "level".
Ex:
<div id="BaseElement">
<p>My paragraph 0</p>
<div>
<span>My Span 0</span>
<span>My ...
6
votes
2answers
903 views
Common elements in two lists
I have two arrayLists with 3 integer. I want to find a way to return the common elements of the two lists. Has anynody idea, how can I achieve this?
6
votes
2answers
27k views
JQuery Select Box and Loop Help
Thanks for reading. I'm a bit new to jQuery, and am trying to make a script I can include in all my websites to solve a problem that always drives me crazy...
The problem:
Select boxes with long ...
6
votes
11answers
35k views
C# - How to change HTML elements attributes
My master page contains a list as shown here. What I'd like to do though, is add the "class=active" attribute to the list li thats currently active but I have no idea how to do this. I know that the ...
6
votes
12answers
4k views
What's the best way to loop through a set of elements in JavaScript?
In the past and with most my current projects I tend to use a for loop like this:
var elements = document.getElementsByTagName('div');
for (var i=0; i<elements.length; i++) {
...
5
votes
8answers
100 views
Misc information HTML element attributes
I've been using rel to store some non-html information, what other attributes are not commonly used that I can utilize to store information?
5
votes
6answers
2k views
JQuery. Hide elements before they rendered. Best practice
I want to generate html layout with areas (divs, spans) that can be shown/hidden conditionally. These areas are hidden by default.
If I call .hide method with jquery on document.ready these areas may ...
4
votes
7answers
187 views
<strong><a> or <a><strong>?
Which is the best practice when nesting inline and anchor tags?
<strong><a href="">link</a></strong> or <a href=""><strong>link</strong></a>
...
4
votes
3answers
96 views
jQuery is animated on multiple elements, which is better?
I am using jQuerys animate function on a plugin, on many elements simulatensly with different durations for each element. I want to know if any animation is running or if there is no animation at all. ...
4
votes
1answer
692 views
Mootools: inject vs adopt
I want to dynamically add some preconfigured HTML-Elements in use of a 'click'-event with mootools.
So I can make it work with my basic knowledge, although it isn“t very nifty. I coded this so far...
...
4
votes
5answers
560 views
Using jQuery selectors with normal Javascript?
I'd like to be able to do:
if ($("cheese_tag") == document.getElementsByTag("cheese_tag")[0]){
alert("success!");
}
Is this possible? Basically what I'm wanting to do is use the ease and power of ...
4
votes
3answers
5k views
Styling regular form elements with jQueryUI
I'm using jQueryUI on my site, as well as http://www.filamentgroup.com/lab/jquery%5Fui%5Fselectmenu%5Fan%5Faria%5Faccessible%5Fplugin%5Ffor%5Fstyling%5Fa%5Fhtml%5Fselect/ as replacement for select ...
4
votes
5answers
519 views
jQuery How to Hide DIVs, they are Showing for a Split Second on page Load
I have made a very quick jquery slideshow, and i'm using this to hide the DIV's which shouldn't be shown until it's their turn obviously:
$(document).ready(function() {
//Hide All Div's Apart ...
4
votes
7answers
1k views
How can I efficiently extract repeated elements in a Ruby array?
I have an array like [1,1,1,2,4,6,3,3] and I would like to get the list of repeated elements, in this case [1,3]. I wrote this:
my_array.select{|obj|my_array.count(obj)>1}.uniq
But it is ...
4
votes
3answers
3k views
Accessing HTML Elements in ASP.Net
I want to change the text of a radio button (html element) not ASP.NET component.
How can I change it from ASP.NET?
Thanks
3
votes
3answers
42 views
Wrapping consecutive list items in separate groups using jQuery
I have an unordered list exported by a CMS and need to identify <li> elements that have the class .sub and wrap them in a <ul>.
I have tried the wrapAll() method but that finds all <li ...
3
votes
3answers
69 views
Hashes array elements copy
My array of hashes:
@cur = [
{
'A' => '9872',
'B' => '1111'
},
{
'A' => '9871',
'B' => '1111'
}
...
3
votes
2answers
47 views
remove just all elements beginning with “id_”
For example, I have 2 elements like this:
<div id="id_1">ELement 1</div>
<div id="id_2">ELement 2</div>
<div id="not_id">different id</div>
how can I remove just ...
3
votes
1answer
117 views
Java read and save GUI elements
I have a question regarding accessing GUI elements. For example having a simple GUI program on Java, how can I read and save the Swing GUI elements hierarchy on a tree (ex. including main window, ...
3
votes
3answers
90 views
How To Align Form Tags Properly?
I want to align the input and form elements to the right and have the label informatuion to the left, all while maintaining the label being vertically centered with each input it is aligned up to. I ...
3
votes
3answers
253 views
Comparing two numpy arrays to each other
I have two equally sized numpy arrays (they happen to be 48x365) where every element is either -1, 0, or 1. I want to compare the two and see how many times they are both the same and how many times ...
3
votes
2answers
220 views
Open HTML Document in C#
I'm wondering if it possible to open a HTML Document to edit elements and attributes without the use of the WebBrowser class; I know how to use functions in HTML to do this, but unfortunately, I need ...
3
votes
4answers
65 views
Instantiating Array and Instantiating each Member at once
Consider the following case:
ColumnDefinition[] columns = new ColumnDefinition[2];
columns[0] = new ColumnDefinition();
columns[1] = new ColumnDefinition();
After instantiating columns as an array ...
3
votes
2answers
120 views
CSS styles for input elements named dynamically
I have:
<input type="text" id="email[1]" name="email[1]">
<input type="text" id="email[2]" name="email[2]">
.
.
That's been populated using php. Inside a for loop there's:
...
3
votes
4answers
3k views
jQuery: Get index of element as child relative to parent
Let's say I have this markup:
<ul id="wizard">
<li>Step 1</li>
<li>Step 2</li>
</ul>
And I have this jQuery:
$("#wizard li").click(function () {
// ...
3
votes
1answer
400 views
Ocaml pattern matching multiple elements in a list at once
Lets say I have a list of type integer [1; 2; 3; 4; 5; 6; 7; 8] and I want to pattern match the first three elements at once. Is there any way to do this without nested match statements?
for example, ...
3
votes
1answer
132 views
jquery referencing multiple elements in one line
How can i write this in one line.
$('#id').whatever();
$('#id1').whatever();
$('.class').whatever();
3
votes
1answer
735 views
XPath to get all child elements except one with specific name?
How do I target all elements in a document except a particular element name?
For example I want to exclude the terminate elements. They can occur throughout the document.
<root>
...
3
votes
2answers
77 views
Use jQuery to apply styling to all instances of clicked element
What I'm aiming for is for jQuery to look at the element I've just clicked on (for example a p or an li tag), then apply a styling to all instances of that element (so all p tags on the page).
This ...
3
votes
2answers
167 views
jQuery inserting element .before() and .after() does not work as expected, what am I doing wrong?
I am trying to dynamically surround sets of IMG and A tags with a div tag but am unable to make it work.
my html:
<img class="myClass-1" src="img5" />
<a class="myClass-2" ...
3
votes
3answers
2k views
jQuery - get form elements by container id
Which is the easiest way to get all form elements which are contained by a wrapper element.
<form name="myForm">
<input name="elementA" />
<div id="wrapper">
<input ...
3
votes
3answers
232 views
jquery iterating through newly created elements
I am trying to add new rows in my table, and save them into DB.
First, I use .append() to append rows on the table:
$("#tablename").append("<tr id='newRow'><td>newly added ...
3
votes
2answers
74 views
Selecting multiple cached elements
In jQuery you can select two elements by id like: $('#elem, #elem2');
BUT
What if you have cached the elem and elem2, and what to apply the same method/function to them both?
i.e.
$elem = ...
3
votes
1answer
152 views
XML::XML2JSON “0” Element
I'm using XML::XML2JSON in Perl to convert JSON data to XML, I am passing through the following data (snippet):
{"question":{"isrequired":{"$t":"0"}}}
and when I use the XML:XML2JSON->json2xml ...
3
votes
2answers
165 views
Working with many interface elements in Cocoa
My app requires an interface that has many buttons, text fields and matrixes. And they need to change from time to time. Right now I do this by having all elements in IB already and ...
3
votes
2answers
1k views
Match elements between 2 collections with Linq in c#
i have a question about how to do a common programming task in linq.
lets say we have do different collections or arrays. What i would like to do is match elements between arrays and if there is a ...
3
votes
3answers
54 views
JavaScript getElementsByCustomTag('value')?
I know getElementsByName('something') that returns the elements with name="something", but I want to return a list of elements where custom="something", how would I do that?
3
votes
4answers
2k views
Are <hr> and <br> inline or block elements?
My guess is that <br> might be inline and that <hr> might be block. But I don't really have a clue...
3
votes
10answers
4k views
what are the fast algorithms to find duplicate elements in a collection and group them?
Say you have a collection of elements, how can you pick out those with duplicates and put them into each group with least amount of comparison? preferably in C++, but algorithm is more important ...
3
votes
2answers
2k views
Running a function on multiple elements using Jquery
I've got some code that I'd like to run on every single checkbox on my page within a table, but I'm not sure of the best way to do this? I've tried something like this but it didn't work :(
...
3
votes
5answers
4k views
jQuery: Creating a New DOM element and showing it
So as the title suggests I wish to create a new dom element (the HTML is generated and retrieved via AJAX). I kind of got it working but it appears hidden, and when I try to Fade In it breaks!
...
3
votes
11answers
5k views
How can I return the last element in a dictionary in C#?
My dictionary:
Dictionary<double, string> dic = new Dictionary<double, string>();
How can I return the last element in my dictionary?