Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

336
votes
6answers
360k views

$(this) selector and children?

I'd like to use a selector to select the child img of the div I'm clicking on this example: <div id="..."><img src="..."></div> To get the div, I've got this selector: $(this) ...
137
votes
18answers
3k views

Career day in kindergarten: how to demonstrate programming in 20 minutes?

Original Question I was invited to the kindergarten group of my elder daughter to talk and answer the kids' questions about my profession. There are 26 kids of age 4-6 in the group, plus 3 teachers ...
46
votes
46answers
4k views

Suggestions on starting a child programming [closed]

What languages and tools do you consider a youngster starting out in programming should use in the modern era? Lots of us started with proprietary Basics and they didn't do all of us long term harm ...
39
votes
31answers
2k views

Suitable environment for a 7 year old

My 7 year old would like to learn how to program (his idea not mine, and he does things in the outside world so I am not too worried from that point of view. He already went so far as to take a game ...
32
votes
3answers
20k views

What is fastest children() or find() in jQuery?

To select a child node in jQuery one can use children() but also find(). For example: $(this).children('.foo'); gives the same result as: $(this).find('.foo'); Now, which option is fastest or ...
25
votes
26answers
3k views

“Programming” for a 9 year old

I am looking for recommendations on a web site/software for providing an introduction to programming concepts for my 9 year old. I remember using Logo/turtle graphics at a similar age and would ...
23
votes
20answers
2k views

A Programming Presentation for eight year olds

I have been given the opportunity to give a small presentation to a group of young children about what I do as a software developer. I have a few ideas kicking around for how to make this interactive ...
22
votes
3answers
22k views

jquery if div id has children

if (div id=myfav has children){ do something } else { do something else } The if condition is what's giving me trouble. I tried all the following: if ( $('#myfav:hasChildren') ...
19
votes
20answers
1k views

What should I tell kids about how great it is to be a programmer?

I am putting a presentation together. I thought about illustrating with websites like Facebook, and MySpace. Does anyone have children around that age that could tell me what they are into? How to ...
17
votes
4answers
196 views

jQuery children a href click does not work

I have this code: <html> <head> <title>site</title> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js" ...
13
votes
3answers
346 views

What things can I teach a group of children about programming in one day?

I'm running a day for 30 kids aged 11-18 about computer game programming. They have all opted to do it, but they have no experience at all of programming. My main aim is for them to learn a few ...
12
votes
4answers
65k views

Jquery $(this) Child Selector

I'm using this on a page: jQuery('.class1 a').click( function() { if ($(".class2").is(":hidden")) { $(".class2").slideDown("slow"); } else { $(".class2").slideUp(); } }); With a ...
10
votes
3answers
2k views

Python-daemon doesn't kill its kids

When using python-daemon, I'm creating subprocesses likeso: import multiprocessing class Worker(multiprocessing.Process): def __init__(self, queue): self.queue = queue # we wait for things ...
9
votes
6answers
1k views

Kill bash script foreground children when a signal comes

I am wrapping a fastcgi app in a bash script like this: #!/bin/bash # stuff ./fastcgi_bin # stuff As bash only executes traps for signals when the foreground script ends I can't just kill -TERM ...
9
votes
3answers
5k views

How to check if element has any children in Javascript?

Simple question, I have an element which I am grabbing via elementById(). How do I check if it has any children?
8
votes
3answers
2k views

Styling nested elements in WPF

Suppose you have a nested element structure, for example a ContextMenu with MenuItems: <ContextMenu Style="{StaticResource FooMenuStyle}"> <MenuItem Style="{StaticResource ...
7
votes
5answers
639 views

jQuery what instead $(this).parent().children()

Just a quick example: <p> <span class="example"></span> <input type="text" name="e_name" id="e_id /> </p> <script type="text/javascript"> ...
7
votes
2answers
187 views

programming *challenge* site *for children*?

I know there's some competition out there for whiz high school kids, but I'm looking for something more geared towards an advanced middle schoolers. The problems should be simpler than Project Euler ...
6
votes
15answers
644 views

What is a good programming language to start my Grade 1 son learning? [closed]

Possible Duplicates: How to get kids into programming Suggestions on starting a child programming. Is there a really simple programming language that I can use to teach my 6 year old son ...
5
votes
6answers
4k views

jquery selection of elements with no visible children

Here's my goal: do something on an element, an <optgrooup>, if all of its children are invisible. My code below outlines the in red if it has any invisible children. But I want to do so only ...
5
votes
5answers
461 views

Non-programming application for 2d game creation

I'm looking an application for children to learn about how to create games. I don't want something as complex as Game Maker. I need it to show children an entry point to create games.
4
votes
2answers
75 views

Last child forked will not die

I have the main process forking two times and thus creating two children. The two children are piped with each other like this: ls | more Now the problem is that the second child never dies. Why is ...
4
votes
5answers
130 views

why to put [0] on the result of children (':first')?

Please explain the [0] in this code: $(function (){ var $cont = $('#cont'); var $el = $cont.children(':first'), el = $el[0]; }); I tried some 'alert' to find the text, but ...
4
votes
2answers
623 views

ASP MVC How to create editor for model which have children elements?

I'm new in asp. I must write an application in mvc which have a database where I have a two tables. One table Parent is realted one to many with table Children. Parent ------------- parent_id name ...
4
votes
1answer
253 views

AS3: Does `FullScreenEvent` temporarily add things to the display list?

Short Answer: Yes, FullScreenEvent temporarily adds 1 child to the stage. Long Rant: Well how about that.. I'm not crazy.. I don't know if this is documented but - it's true. That little message ...
4
votes
2answers
3k views

Disable home button in android toddler app?

I've developed and app that is a slide show of pictures which each play a sound when you tap them. It's like a picture book for ages 2-4. The problem is, since android won't let you capture a home ...
3
votes
1answer
43 views

php command line reader

So I want to be able to do the following in PHP. From the command line I call a script. /usr/bin/php mychildren.php I want the script to be able to create 2 child processes both of which stay ...
3
votes
1answer
74 views

Layout puzzle development in Android

I am a newbie in Android. I want to develop an application where I can change the screens based on button selected. Application might endup with 20+ screens with buttons or entry form. From 1 screen ...
3
votes
6answers
57 views

How to get all subobjects from a CustomObject with n Children/Subchildren and so on

I have a CustomObject with n Children. These children are a List of CustomObjects. Something like this: public class CustomObject { public List<CustomObject> Children = new ...
3
votes
4answers
76 views

How to hide a jQuery manipulated empty element and its parent

I have a form (todo list) containing labels/checkboxes (todos) as follows: <form class="tasklist"> These are your tasks for today <label> <input class="task" ...
3
votes
1answer
64 views

Adding multiple children at multiple levels with a loop and “clean” code

I have a C# Class that can contain multiple children at multiple levels. Adding children manually would look something like this: CustomClass MyClass = new CustomClass(“something”, new ...
3
votes
4answers
135 views

Finding all “X-generation” descendants using jQuery

Solved (sort of) Well, I think I solved it (barring edge cases) using the following: function findByDepth(parent, child, depth){ var children = $(); $(child, $(parent)).each(function(){ ...
3
votes
3answers
74 views

How to change dynamically size of hX tag if the parent div contains a child div of class X

I'm having some problems with jquery and I really hope someone out there can help! I have the following HTML: <div class="widgetContent"> <div class="thumbNail"> </div> ...
3
votes
2answers
90 views

jquery short hand for parent, children

i keep on having to affect elements relevant to other elements but my methods see a little amateur! ie to // <div> <div> <div> <ul> matched item where script is called from ...
3
votes
1answer
56 views

jquery: How to optimize finding relatives of $(this)

I often find myself trying to do something related to the element clicked, and end up with a string that looks something like this: $('input.Button').click(function(event) { ...
3
votes
1answer
279 views

WPF Panel.Children vs Panel.InternalChildren — What's the difference?

According to MSDN - Panel.InternalChildren Property: Classes that are derived from Panel should use this property, instead of the Children property, for internal overrides such as ...
3
votes
1answer
470 views

How can you get the parent of a UIElement?

Ok... I know that FrameworkElement, which is a direct subclass of UIElement, has a Parent property, but Panels have children of type UIElement, not FrameworkElement (Children is of type ...
3
votes
1answer
961 views

Android Problems Converting ViewGroup with Children into Bitmap

I'm successfully converting a ViewGroup (RelativeLayout) into Bitmap using a Canvas. However, when the draw happens I only see the ViewGroup with its background drawable and not its children (two ...
3
votes
1answer
279 views

Restrict the depth of nested elements in XSD

Is it possible with XML schema to restrict the depth of child elements nested in a parent? The context here is I collect alarms from a management system and I want to provide a XML document which ...
3
votes
9answers
716 views

MATLAB for kids?

My seven-years old expresses large interest in computers (well, who doesn't? :). Since I'm mostly program in MATLAB, I'm thinking why not to teach him MATLAB. We did a small project with him (he had ...
3
votes
1answer
3k views

jQuery disable multiple input children of a div

I want do do something like below from a checkbox, There's a checkbox on every row, and I'd like to disable all the input fields on a row with the class .room when the checkbox is clicked. function ...
3
votes
1answer
2k views

Enough to call Children.Clear on a WPF canvas to get rid of old controls before adding new ones?

I am experimenting with WPF and re-implementing my old maze screensaver. My code basically adds a bunch of images to the canvas, building up a grid, 64x64 pixel images side by side, to cover the ...
3
votes
2answers
715 views

NHibernate save / update event listeners: listening for child object saves

I have an Area object which has many SubArea children: public class Area { ... public virtual IList<SubArea> SubAreas { get; set; } } he children are mapped as a uni-directional ...
3
votes
3answers
2k views

C# - Prevent duplicate MDI children forms

Is there a way to prevent the opening of a certain form within an MDI container if that said form is already opened? Thanks.
3
votes
4answers
3k views

How can I get the child windows of a window given its HWND?

I have the handle for a given window. How can I enumerate its child windows?
3
votes
1answer
4k views

Prototype Element.toggle on hover, disables with childElements

I got the following situation: I got a table structure like this: <tr> <td>text</td> <td>text</td> <td>text</td> <td><a href="#"><img ...
3
votes
4answers
4k views

WPF MenuItem children not showing

I am using an ObjectDataProvider and a DataTemplate to populate a MenuItem inside my Menu bar. (WPF, C#/XAML) See snipet below. Result: The top menu item appears, when i click on it, the wrapping ...
3
votes
1answer
1k views

NHibernate child objects update problem

I have an object that called 'category' and the table looks like this. CATEGORY ID int ParentCatalogID int ParentCategoryID int << This is the ID of this table Position ...
3
votes
7answers
5k views

What's a good Computer for a Child (5-years old)?

I still fondly remember getting my first computer a C-64 when I was about 5, and of course I'm sure many of you have similar memories. But the catch was the C-64 was a single piece of hardware that ...
2
votes
2answers
61 views

How to get the number of open MDI children

In C#, how do you obtain the number of open MDI children windows? I could make my own counter, but I'm not sure if there's already some in-built functionality for this. I tried using ...

1 2 3 4 5 6