The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
50 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
20 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
16 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
19 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
16 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
35 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
28 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
7answers
63 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
49 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
63 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
66 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
30 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
30 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
22 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
32 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
104 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
76 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
54 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
38 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
89 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
52 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
161 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
46 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
94 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
146 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
467 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
15k 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
158 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
273 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
259 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
656 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) { ...
1
vote
1answer
595 views

Loading a hidden div into an AJAX jQuery UI tab (future DOM element)

I have been trying to manipulate content that is loaded into jQuery UI tabs via AJAX. As you can imagine, these elements are "future" DOM elements and aren't manipulated by normal ...
0
votes
1answer
98 views

PHP XML add elements

i tryed to do it with different codes but always with failure. Here's my XML: <movies> <movie> <title>Pav1</title> <plot>tekstas1</plot> ...
0
votes
1answer
206 views

Have trouble with comparing two objects of an array

This question may seem a duplicate, but it has kind of specific moment that may differ from other questions like this... So... I have two images. Both are captured the same screen. In my code crops a ...
-1
votes
1answer
154 views

WPF Draggable element [closed]

I am quite new to WPF so I was hoping someone could tell me what the name of what I'm describing is (if such a term exists)? Say I want to have a ListBox containing several "elements" instead of ...
1
vote
3answers
89 views

PHP XML removing elements

My xml looks like this: <?xml version="1.0" encoding="utf-8" standalone="yes"?> <images> <pic> <image>54</image> <descr>Image 1</descr> ...
3
votes
2answers
162 views

Perl: Merging Hash elements

I have 2 hashes. my %hash1 = ( '1.3.6.1.2.1.7.1.0' => 'switch_stuff1', '1.3.6.1.2.1.6.3.0' => 'switch_stuff4', '1.3.6.1.2.1.6.5.0' => 'switch_stuff5', ...
0
votes
3answers
1k views

Jquery count div elements by class from list value

Hello i want to count all visible div Elements with the value form the list item. Items witch are hidden have count 0 If i do the count by hand (item by item) it works, here my example: var counter ...

1 2 3 4 5 10