1
vote
2answers
43 views
Parsing periodic elements in PHP/html
This problem actually hit me recently.
So I was tasked with putting people's bios up on the web (asked for opinions in a different question), which I went with XML and just created elements based on …
1
vote
3answers
29 views
c# LINQ to XML Query Expression, checks inside quesry if Element Exist
<channel>
<title>Best Web Gallery - Flash + CSS Gallery</title>
<link>http://bestwebgallery.com</link>
<description>Featuring the world best …
0
votes
6answers
83 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
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
4answers
40 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
2answers
34 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 …
0
votes
1answer
148 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
230 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...
1
vote
1answer
50 views
list elements by activity
Hello, I'm working on automated builds and need to be able to list elements that were worked on under particular activities. I'm new to ClearCase so I apologise for naiivety ...
My downstream build …
0
votes
3answers
45 views
Javascript - Visual Representation of Element as an Image
This is a long shot but I've seen things which might make it posssible.
I have a div, which is filled with images. Album covers if you must know. And I want to allow users to download this as an …
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 {
…
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 …
