0
votes
6answers
82 views
jQuery How to Hide DIVs, they are Showing for a Split Second on page Load
Hi,
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 …
0
votes
1answer
19 views
Select an element that doesn’t have a background set
The title pretty much says it all.
Using jQuery, I need to select all elements that do not have a background color or image defined, and apply at least a white background to it.
Thanks!
0
votes
4answers
39 views
jQuery: hidden elements - general question
hi,
when elements are hidden, you can't read eg. their dimensions, is this a general javascript problem or is there maybe a workaround in jQuery?
i'm having eg. some tabs which contain widgets, …
0
votes
6answers
40 views
return type of input with jquery
I have a form with dynamically created form elements.
I need to get the value of each element, and send an ajax request to make sure the data is ok (the easy part). I can get each elements value easy …
0
votes
2answers
29 views
Is it possible to obtain a list of events bound to an element in jQuery?
As the question said, i need the list of events bound to a specific element.
I mean events like click, mouseover etc bound to that element at the loading of the dom.
(Stupid) example:
…
0
votes
3answers
67 views
Getting elements that exceed the maxium value. JAVASCRIPT/JQUERY
greetings,
I'm new with java script so bear with me!
I want to achieve something using JQuery selectors.
I have a list menu. It looks like this...
<ul style="width:auto">
<li>item …
1
vote
1answer
227 views
Access iframe elements in javascript
I have a webpage where there is a texarea within a iframe.
I need to read the value of this textarea from its child page javascript.
Presently by using window.parent.getelementbyID().value in the …
2
votes
9answers
561 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 …
0
votes
1answer
144 views
How to loop through WPF StackPanel static Items?
Probably very easy but I am having trouble to figure this out (also Google doesn't seem to help much).
How can I loop through the statically declared elements (no databinding - elements are declared …
3
votes
4answers
228 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...
14
votes
10answers
537 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 …
1
vote
3answers
106 views
Use CSS to create multiple elements that take up the entire width of the parent.
I'm trying to achieve a horizontal CSS menu bar where all of the <a> elements combined expand to the entire width of the parent. The HTML looks something like this:
<div id="parent">
…
5
votes
10answers
272 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">
…
0
votes
6answers
82 views
Cannot get CSS Elements centered
Hi there,
I cannot get my site to be centered for the life of me with CSS. I have tried all the usual methods suggested around the web including:
body {
text-align: center;
}
#container {
…
19
votes
15answers
967 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 - …
