The elements tag has no wiki summary.
1
vote
0answers
8 views
Allowing Overlapping elements with jquery
On one of my pages I have used jquery to animate a navbar button when it is hovered over, however, when i do so it pushes the div below it out of the way and messes up the layout - is it possible to ...
0
votes
3answers
28 views
jQuery select last span from h1
How can I select last span from h1 element?
<h1>
<a href="#">
<span>Stackoverflow</span>
<span>This is the text what I want to hide</span>
...
0
votes
1answer
14 views
jQuery load a foreign web page with xmlHttpReq and parse the resulting variable as a DOM document
Trying to figure out how to do this:
Within the $(doculent).ready function I use this code to read a web page from another server:
var qString = "Newsletters/Legacy/somewebpage.html";
var ...
0
votes
2answers
38 views
Python: accessing elements of a list within a combination of lists
I am new to python and I have spent hours trying to figure out the following problem. I have an object that looks like this
>> new_list=['abscd','qrtye']['fghtj', 'wert']...more lists
>> ...
1
vote
2answers
25 views
How to create an element inside another in java using JAXB?
I have a java code i'm using to create XML file using JAXB, i know how to create root elements and elements but i want to create a child elements from an element like that:
<root element>
...
0
votes
0answers
26 views
jQuery plugin replaceElements replaces all Elements over the whole document
I like to replace an ul-li-list (ul#menu) in div-p-"list" (div#menu). That means that ul becomes div and li becomes p-tag.
Problem: The Plugin I have found replaces all ul-li-lists all over the ...
0
votes
2answers
44 views
Invert Elements in ArrayList<Integer> Java
Ok so the point of this method is the invert the elements in an ArrayList of type . So if I have the elements:
5
6
7
8
9
10
once I call the method, the position of the elements should be Inverted as ...
0
votes
1answer
57 views
Multiply a css class div element in Jquery or Javascript without the HTML
My problem is simple,
I have a div class element looking like this:
<div class="square">
<div class ="inner">
<img src="square.jpg" alt="square">
</div>
Now, what I ...
0
votes
2answers
22 views
Linux zip command - adding date elements to file name
occasionally I run a backup of my phpbb forum files from the Shell command line:
zip -r forum_backup ~/public_html/forum/*
I'd like to add date elements to the file name, so that the zip file ...
0
votes
1answer
20 views
How to get data from multiple form elements within a single view
I have added three form elements
defineroute.ctp
singleroute.ctp
singletrip.ctp
in a view called route.ctp.there is a function for the route.ctp in the users_controller called route().
my doubt is ...
1
vote
2answers
22 views
Jquery, targeting specific instances of cloned HTML for php search and results
Am a novice with Jquery but I've put together code for a jquery search on select change alongside code for add/remove instance buttons, the idea being that the user selects an entry in a dropdown and ...
1
vote
1answer
17 views
How to submit a form from an element to a controler and store it in another model
I have a controller Users_controller and a function travel().i have a view travel.ctp for that function.in travel.ctp i use an element profile.ctp to display some content that is stored in the ...
0
votes
1answer
43 views
How to add “id” attributes to exsisting element values in a PHP simplexml document
These 2 lines below currently work within the XML document to produce the 2 values :
if (isset($images[0]->fname)) { $image1 = $theimgpath.'/'.$images[0]->fname; } else { $image1 = ''; ...
-2
votes
1answer
30 views
Select all Elements on a page [closed]
I am looking for a function in javascript which clicks on every element (links, buttons,...) on my page. All elements should be disabled by default. I am using this for my testing environment in ...
3
votes
6answers
66 views
What does the “#” mean or stand for in a code?
I'm trying to figure out a coding as a newbie. Wondering what the # symbol means or stands for in a code, like #55555 for a number. Or #menu1 in a div: div#menu1 ul.rMenu?
Trying to back into an ...
-3
votes
1answer
36 views
How to sort the elements of B array, by copying into new array of P of SortPair elements using derived comparator, sort_cmp?
So I'm not sure how to copy the elements of B into a new array of P of SortPair elements where the int component is the array index, ex:
B = [ (7,Q), (9,W), (5,K), (0,S), (9,B) ]<br>
Would be ...
0
votes
0answers
51 views
Count instances of first array in second array and return third array
I have two arrays of strings, but for demonstration purposes I will use letters a-e:
{a,b,c,d,e}
{a,a,b,c,c,c,d,e,e}
I want to count instances of each element in the 1st array as elements in the ...
0
votes
0answers
69 views
update Dictionary that contains a various key and struct from any type
I'm trying to convert string collection type to dictionary that contain various types of keys and values(the value will be a struct most of the time.
each string in the string collection will contain ...
0
votes
1answer
20 views
c: skip an element with scanf
I'm trying to scan a file that contains 13 ints which are to be stored in 13 variables. Is there a way to loop over this, while skipping the i-th element? I'm anticipating there might be a solution, ...
0
votes
3answers
67 views
Find minimal elements of set of vectors
I have a set of vectors, and I need to write algorithm in java, to find minimal elements of this set. Problem is, that there are elements which are incomparable. E.g. ...
1
vote
1answer
35 views
Backbone.js DOM elements references approach
I'm currently building a large backbone app, and here is my question. How to cope with DOM elements refernces the best way? Now I simply find all elements which will be accessed in a future (forms and ...
0
votes
1answer
31 views
Merging two elements in array, if the next array element contains part of word
Ok, so I have an array I constructed from a \n seperated list.
after some slicing and dicing I have got my array the way I want it
Except that the array sometimes has two elements that should be one ...
0
votes
1answer
31 views
Why are empty arrays being hidden when outputting them as XML?
I'm trying to have PHP convert nested arrays into an XML document. I've been unable to troubleshoot why arrays with no children are being hidden from the XML output entirely; I want them to show up as ...
1
vote
0answers
26 views
Height of page not resizing depending on amount of content in div
I need my website (https://newmedia.leeds.ac.uk/ug10/cs10enw/portfolio/index.html#one) to resize each page window depending on the height of .content. The HTML is all in one file with a page slider ...
1
vote
2answers
26 views
Check if all parameters for a given function belong to the same class
I have a function like this:
// merge - merge two or more given trees and returns the resulting tree
function merge() {
if ($arguments = func_get_args()) {
$count = func_num_args();
...
1
vote
1answer
36 views
Why not create my own semantic elements in HTML5? [duplicate]
I've learnt HTML and the basics of CSS only recently and am enjoying the liberty of finally being web literate. One thing puzzles me, with the usefulness (literally and semantically) of elements in ...
0
votes
1answer
38 views
XSLT - interlink attributes from different child elements
I have the following XML file that stores movies and actors:
<database
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="movies.xsd">
<movies>
...
0
votes
1answer
109 views
Load a svg file(xml) and extract specific information using javascript
I am trying to get a svg file using jquery/javascript
svg example:
<svg width="111" height="123" xmlns="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<rect ...
0
votes
1answer
51 views
XSLT - display child elements in a row
I have the following XSLT code that displays movie information from a local XML file (title, actors, runtime, etc.) and Amazon API product information
(product title and picture) from external amazon ...
0
votes
1answer
48 views
selecting all elements of a class within elements of given id
My HTML code looks something like
<div id="partA">
<div class="myClass typeA"> blabla </div>
<div class="myClass typeA"> blabla </div>
<div ...
0
votes
5answers
61 views
Remove an element in an array
This is my attempt at this problem, how would I move the 0's to the end of the array? I tried swapping the 0 elements with the end elements and well that wasn't it...
public void removeMiddle() {
...
0
votes
2answers
77 views
Shifting elements in an array?
I would like to make something where the strings will move up in an orderly fashion. For example:
Iteration 1:
Hello There
I am
Asking a question
To you
Iteration 2:
I am
Asking a question
To ...
0
votes
1answer
61 views
JQuery XML Parsing Multi-Level Of Same Element
this is my first question here and I am quite new to web development world. I have a simple question so I don't want to annoy you with all my code, I'll make you a simpler example:
I have an XML that ...
1
vote
1answer
42 views
best practice for xml repeating elements
Is it acceptable to repeat xml elements as shown in this example? Notice in the first example how the 'period_data' element is just repeated directly inside the 'usage_history' element without first ...
2
votes
3answers
96 views
HTML templates for repeating elements
I have the following code:
<div class="spinner">
<div style="-webkit-animation-delay:0.24s; border-color: #777;"></div>
<div ...
0
votes
2answers
53 views
How do I identify and send info to 2 different elements with the exact same info in Selenium Webdriver Java
I'm automating filling out a online form. Problem is lots of the fields have the
same attribute info. Both examples below are address lines in different sections I'm trying to send different address ...
1
vote
2answers
182 views
How can multiple elements be added to an XML config file with wix?
I am trying to edit an XML file with Wix. I am using the WixUtilExtension bundled with Wix 3.7. The xml file is a settings file created in Visual Studio 2010 for a C# application. In this file, I am ...
0
votes
0answers
11 views
Links outside the ul element
I am new to web development. I have a problem with my horizontal menu bar and logo. I can't separate elements in my logo from my menu bar. Its all got the same line across and it seems the links are ...
0
votes
1answer
50 views
XSLT - hyperlink an XML element based on its attribute
I have the following XML that stores movies and actors:
<movies
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="movies.xsd">
<movie movieID="1">
...
0
votes
1answer
99 views
XSLT - display child elements located in different XML files
I have the following movies.xml file that stores movie titles and Amazon API ItemId for dvd and bluray:
<movies
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
...
1
vote
1answer
280 views
JavaFX 2.0 resizing everything on scene
Hy everyone. I am having this problem with my app: If i let it in standby(not working with it) for more then 4-5 minutes when i hover elements like buttons, tabs, textfields, textareas, labels etc, ...
0
votes
2answers
150 views
Script only changes first <p> element
Below is the javascript I have for my page:
window.onmouseover = function(){
var body = document.getElementsByTagName("body")
var h1 = document.getElementsByTagName("h1");
...
1
vote
1answer
80 views
Program crashes when trying to Add Element to Existing Node
I'm trying to add an Element into an already existing Node/Parent like so:
<?xml version="1.0" encoding="UTF-8" standalone="true"?>
<BitComet Version="1.0">
<MyShares>
...
0
votes
1answer
475 views
How to load XML Elements using LINQ from XDocument into a class (not using Descendants)
How to load XML Elements using LINQ from XDocument into a c# class. I don't want to use XDocument.Descendants because the settings are not repeated and occur only once in the XML.
This works but I ...
5
votes
2answers
16k views
best way to get child nodes
I was wondering, JavaScript offers a variety of methods to get the first child element from any element... but which is the best? By best, I mean: most cross browser compatible, fastest, most ...
1
vote
2answers
159 views
Change property of all instances of element on hover (CSS)
I have a group of article elements, using nth-child the odd ones have their background-colors set to blue and the rest red.
See Here: http://jsfiddle.net/8KFwh/4/
I'm looking to be able to change ...
0
votes
0answers
275 views
Find the repeater hosting a hidden field then hide the repeater using JavaScript
I was wondering if this is possible, here's a snippet of my repeater code:
<div>
<table>
<tr>
<td><asp:RadioButton ...
1
vote
3answers
262 views
Array operation, adding element at the end, pushing the other elements back
I'm planning to do a small program that'll display a graph which will be updated a few times per second (maybe 100/200ms or so). The purpose is to plot over 1000 different values in the graph, ...
2
votes
3answers
663 views
How can I parse an XML with multiple root elements using PHP?
I am trying to read this XML file using PHP and I have two root elements. The code that I wrote in PHP reads only one root element and when I add the other one (<action>) it gives me an error.
I ...
0
votes
2answers
70 views
Check if successive Elements are different (less than)
I am wondering if there is a way to compare successive elements in an arrayList. I have
this
for (int j=0; j< Index.size(); j++) {
if(Index.get(j) < Index.get(j -1) {
...

