Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
3answers
132 views

jquery nth-child click

I have the following code: css: nav div:nth-child(1) { background: red; } nav div:nth-child(2) { background: blue; } nav div:nth-child(3) { background: yellow; } html: <nav> ...
12
votes
2answers
2k views

Android: how to check if a View inside of ScrollView is visible?

I have a ScrollView which holds a series of Views. I would like to be able to determine if a view is currently visible (if any part of it is currently displayed by the ScrollView). I would expect ...
12
votes
7answers
738 views

What modern version of LOGO should I use to teach a child programming

I remember way back when that the programming language LOGO was widely used for teaching about computers in primary schools, back before PC's arrived on the scene and turned the computer lessons into ...
12
votes
3answers
48k views

how to get the child node in div using javascript

Below is the structure of my div: <div id="ctl00_ContentPlaceHolder1_Jobs_dlItems_ctl01_a" onmouseup="checkMultipleSelection(this,event);"> <table cellpadding="0" cellspacing="0" ...
6
votes
2answers
235 views

querySelector search immediate children

I have some jquery-like function: function(elem) { return $('> someselector', elem); }; The question is how can i do the same with querySelector()? The problem is > selector in ...
6
votes
1answer
3k views

Getting the element number in jQuery

How can you get the child number of the selected element, e.g. <ul> <li>First child</li> <li>Second</li> <li id="selected">Third child</li> ...
5
votes
5answers
629 views

jquery: if (target) is child of ('.wrapper') then (do something)

var target = $(this).attr("href"); if {target is child of ('.wrapper')} then (do something) simple syntax? can someone show me the correct syntax here?
5
votes
2answers
917 views

child objects in rdlc (Studio 2010RC)

I am attempting to reference a sub-object in a field expression in a studio 2010 report. This used to work in prior versions. When account references another object with properties the following used ...
5
votes
5answers
3k views

CSS: Parent-Div does not grow with it's children (horizontal)

I would like the parent-div (red) to grow with the green child-div. Now it just stops at the viewport. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" ...
5
votes
7answers
11k views

C# enum in interface/base class?

i have problem with enum I need make a enum in base class or interface (but empty one) class Base { public enum Test; // ??? } and after make diffrent enums in some parent classes class ...
4
votes
6answers
64 views

jQuery access child of current parent

I'm new to jQuery and I'm trying to do the following: access the child of the current div's parent ( or in other words: another child of the current div's parent ). My code looks like this ( this is ...
4
votes
4answers
74 views

PHP instantiating child class

I'm trying to become an object-oriented coder here, so I'm giving myself some simple tasks. I built a class that displays all the images in a given directory. That worked fine, so I separated that ...
4
votes
1answer
127 views

How do I wait for flash (as2) to load child elements before running some code?

On the stage, I have seven buttons. I want to add events on these buttons, however most of them are "undefined"/null. How do I wait for the stage or _root in as2 to finish loading the child elements ...
4
votes
4answers
828 views

ListView getChildAt returning null for visible children

I'm getting some strange behavior from a listview/the getChildAt method. I have a HashSet, iconsToUpdate, of icons that have been changed in the database. I want to iterate over the visible rows to ...
4
votes
1answer
138 views

How do I get Python XML to stop having wasted Child Nodes

I have a simple XML document I'm trying to read in with Python DOM (see below): XML File: <?xml version="1.0" encoding="utf-8"?> <HeaderLookup> <Header> ...
4
votes
2answers
1k views

Java tool/method to force-kill a child process

I am looking for a Java tool/package/library that will allow me to force-kill a child process. This tool/package/library must work on Windows platform (mandatory). Support for Linux/Unix is ...
4
votes
6answers
264 views

How do you teach a nine year old how to develop a basic web site

My coworker has a nine year old son and he wants to teach him how to make a basic website. Can anyone suggest some resources that might be useful? Thanks
4
votes
1answer
169 views

overriding JQuery .click() function

i'm having a bit of a prblem with the jquery click function, below is part of the layout of my code: <td id="01" class="day-main-diary"> <div title="sdfsdf" class="diary-event ...
4
votes
3answers
76 views

page child control

asp.net page is also a control. how can I access child control within page control? this.page.?
4
votes
4answers
794 views

CSS: How does Width work as a percentage?

I'm having what I think is a weird problem. I have one div, inside a parent div, and I'm giving the child div a width of 100%, but it's not growing to the size of the parent div. The parent div does ...
3
votes
1answer
53 views

Creating generic child packages in Ada 95

I have package p1 and two child packages: p1.child1 and p1.child2 All packages are generic. I'm trying to create an instance of p1.child1 in p1.child2: package body p1inst.child2 is package ...
3
votes
3answers
46 views

How to get the value of a child attribute in javascript?

<div class="menu_item_variant" id="date" onmouseover="mouseIn(this.id)" onmouseout="mouseOut(this.id)"> <a href="dating-advice.html">Dating Coaching &amp; Advice</a> ...
3
votes
1answer
95 views

Scala: Passing instance of child class to parent class function

Why does the Scala repl say: <console>:10: error: type mismatch; found : Car#Door required: _1.Door where val _1: Car When I run this statement: var c = New Car ...
3
votes
2answers
303 views

jquery add class .active first element on child selection

i use the code below to add the class .active to the site links but i need to add the class active either on the nav menu on top when i click the menu item or one of the childs. For example if i click ...
3
votes
4answers
82 views

CSS: Child selector higher precedence than class selecctor?

I have the following HTML: <div class="form-square"> <div class="seven-col"> Hello World! </div> </div> And the following CSS: div.form-square > div { ...
3
votes
1answer
288 views

mouseleave event does not work in absolute child element

I have menu list like <ul class="systeMenus"> <li> <ul> <li></li> <li></li> <li></li> ...
3
votes
1answer
57 views

How to style a DIV's 2nd UL only

I am trying to get http://cssdesk.com/bQTEf to look like http://i.stack.imgur.com/jhtEh.png
3
votes
2answers
270 views

Python subprocess get children's output to file and terminal?

I'm running a script that executes a number of executables by using subprocess.call(cmdArgs,stdout=outf, stderr=errf). when outf/errf is either None or a file descriptor (different files for ...
3
votes
3answers
145 views

Prevent child process from system calls

I want to create a child process that call another program (with C++ in Unix). But I want to restrict the child process not to call system(), fopen(), etc. (if it did, it would be terminated). How to ...
3
votes
3answers
298 views

Parent class inside another class

Okay, so I have this class, let's say CMain, that contains a CFruit class. What I would like to do is run functions based on CFruit's type (if it's CPear or CApple, etc). So I'd like to do something ...
3
votes
1answer
565 views

SQL query root parent child records

We have nested folders with parent-child relationship. We use MySQL MyISAM DB. The data is stored in the DB in the following manner. Every time a child folder is created in the nested structure, the ...
3
votes
4answers
1k views

WPF rendering problem with HWND children in the way

I suppose it is safe to say that WPF renders its contents as a window background. There are no child windows in a traditional HWND sense. So, when one introduces something HWND based in a WPF app, ...
3
votes
3answers
7k views

Jquery: How to get to a particular child of a parent?

To give a simplified example, I've got the following block repeated on the page lots of times (it's dynamically generated): <div class="box"> <div class="something1"></div> ...
3
votes
1answer
88 views

How to access the main windows handle once the child window exits in a process in C#

I am starting an application in C# through Process.start(). when that application opens initially a child window runs to attempt to connect to a simulator hardware. till the child window succeeds in ...
3
votes
5answers
234 views

Embedded linux child process creation problem

I am using linux kernel 2.6.30 on my board. It has 128MB of DDR2. My main application occupies almost 80MB of system memory. After executing all applications, only 25MB is left. I want to execute ...
3
votes
2answers
2k views

Xpath - How to select parent based on attribute of child?

How do you select a parent based on the attribute of a child? I want to select a div: //*[@id='outer']/div/div/div/div that has a child with the 'a href' attribute equal to 'www.blah.com': ...
2
votes
3answers
67 views

Passing file name (string argument) from Child window to a non-static method of Parent window

From Parent window I need to open a file and fill up different tables and controls (belong to Parent window) using its content. The name of the file (string) is formed in Child window by ...
2
votes
1answer
83 views

Gridview child click to update User Interface android

I have created one gridview and use custom adapter for that. I added two images inside grid view.one is image and another one looks like close button. My plan is to remove the item from the gridview ...
2
votes
7answers
70 views

CSS/HTML - forcing style to child from parent

I have a content div with font-family:Tahoma. When user click on a post clink an ajax code will fetch content of that post and put in my specific div. On a normal situation (before clicking any link) ...
2
votes
1answer
85 views

Javascript: How to reference a child window that is opened by posting

I want to reference the child window that I have opened so that I can call some method on it from the parent. To do that I need to keep a reference to the window. All the examples I have found keep ...
2
votes
1answer
83 views

Unix Fork Understanding

I am learning process forking and I'm trying the code of listing 3: sunbox$ cat fork2.c #include <unistd.h> #include <stdio.h> int main (void) { pid_t p; ...
2
votes
2answers
95 views

jQuery child>parent>child

I have this html-code: <div class="im"> <div style="height:220px">HELLO WORLD! <a class="close">X</a> <a class="open" style="display:none;">V</a> </div> ...
2
votes
2answers
166 views

Sass and combined child selector

I've just discovered Sass, and I've been so much excited about it. By the way, in my website I implement a tree-like navigation menu, styled using the combined child selector (E > F). Is there ...
2
votes
4answers
80 views

PHP: Make my objects have childs

I'm sorry if my question already asked before. I don't know what the search term that match my problem. I've searched 'OOP child', 'PHP object child', etc but I got no clue at all. So, here we go. I ...
2
votes
3answers
121 views

How to let the parent window of a child window (a.k.a. owned window) stay active with winapi?

I am writing a small C application using winapi. There I've got a window with a child window (toolbox). I am able to keep it inside this window and so on, but my question is: How to keep the main ...
2
votes
1answer
73 views

jQuery looped animation for child elements

Afternoon all! I've got a small list of floated divs that I want to highlight one periodically. Basically I'm trying to display a workflow process. Using jQuery I want it to: Get the first child of ...
2
votes
3answers
72 views

Unruly Child Dialogue, C# .Net Winforms

I am using WinForms for a C# project and my main form has a simple button that uses ShowDialog(this) on a second form to show it. Like this: if (myParameterForm.ShowDialog(this) == DialogResult.OK) ...
2
votes
2answers
42 views

Why doesn't parent process return to the exact location after handling signal?

#include <signal.h> #include <string.h> #include <sys/types.h> #include <sys/wait.h> #include <stdio.h> sig_atomic_t child_exit_status; void clean_up_child_process (int ...
2
votes
3answers
444 views

Getting the SelectedIndex of a child node in a TreeView

I am currently working on a wpf project in C#. I have a treeview created that has parent nodes with childen nodes inside of it. I was wondering if there was a way to get the index of the child node ...
2
votes
1answer
61 views

How to target a variable's child with JQuery

How do I target post_ad_cloned's input child? var post_ad = $('.duplicate_name'); var post_ad_cloned = post_ad.clone().removeClass('duplicate_name').appendTo('#sss').show(); $("post_ad_cloned ...

1 2 3 4 5 10