19
votes
15answers
971 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 - …
14
votes
10answers
544 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 …
5
votes
10answers
278 views
Should I use Elements or Attributes in XML?
Hello
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">
…
3
votes
4answers
237 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
2answers
7k views
JQuery Select Box and Loop Help
Hi All,
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 …
3
votes
11answers
1k 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++) {
…
2
votes
9answers
584 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 …
2
votes
2answers
257 views
Running a function on multiple elements using Jquery
Hey,
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 :(
…
2
votes
2answers
80 views
BizTalk mapping, nested collections of elements, help needed
Hi
I have a schema that contains the details for an order. Within the schema, I have a collection of line items containing details of each item within the order. Schema is similar to the following …
2
votes
5answers
522 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!
…
2
votes
9answers
667 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?
2
votes
4answers
646 views
jQuery toggle next two elements
I have a form select element that, when a certain value is selected, will toggle two other elements on the page (a dt / dd pair).
The event is triggered correctly, but I can't get the elements to …
2
votes
3answers
400 views
Iterating through all the <div> tags on a page
I want to go through all the elements on a page using Javascript and see if they have a property set. Is there an easy way to do this, or do I have to use a recursive solution?
2
votes
3answers
516 views
XSLT counting elements with a given value
I need to count the number of elements in an XML file that have a particular value (to verify uniqueness). The XML file looks like this:
EDIT: I updated the original "simplified" XML with the actual …
2
votes
3answers
850 views
XSD elements to a Form in ASP.NET
Is there a standard way to convert an XSD to an input form (ASP.NET C#) so that later on whenever a new field is added / removed from the XSD the field on the page automatically shows up or goes away …
