360 reputation
218
bio website
location
age
visits member for 2 years, 3 months
seen yesterday
stats profile views 95

May
12
comment Selecting wildcard child class and adding class to parent
There was something wrong with a plugin causing the disturbance. Thanks!
May
12
comment Selecting wildcard child class and adding class to parent
I have actually tried that. For some reason none of these are working. I keep getting Syntax Error: Unexpected identifier. My original code works $('.content a > img').parent().attr('class', 'gallery'); but I want to be more specific with selecting an img class.
Apr
15
comment Firing events in Twitter Bootstrap's Carousel
Ahh, ok. Thank you! (What is the 0 for at the end?)
Apr
15
comment Firing events in Twitter Bootstrap's Carousel
Thanks! Is there a way to refer to the carousel on 'slid' instead of the document? Replacing it with carousel or #myCarousel doesn't work.
Jan
13
comment need help on splitting a string in c++
I hope this link helps! stackoverflow.com/questions/53849/…
Jan
13
comment secure way to limit access to a login form
A little bit random -- if you're afraid of the page showing up on Google, add <META NAME="ROBOTS" CONTENT="NOINDEX,NOARCHIVE"> to the head.
Jan
13
comment Elements with same CSS display differently in Chrome
I don't think it is Chrome specific, but moreso the principles of parent and child classes in CSS. When you set the parent item to position:relative and set position:absolute to the child item, you are ensuring the child item's positioning is relative to the parent item.
Jan
5
comment Django templates - is it possible to make url-aware templates
I have asked a similar question, and the chosen answer provides example code: stackoverflow.com/questions/10662391/…. I hope that helps!
Jan
4
comment django & the “TemplateDoesNotExist” error
What about removing the "r" in the TEMPLATE_DIRS?
Jan
3
comment Extract parts of text in Python from MediaWiki's API
Awesome, thank you!!!
Jan
3
comment Extract parts of text in Python from MediaWiki's API
I was also thinking about using the .split() method too, but I am also wondering if there are other ways.
Dec
30
comment Iterating and printing JSON objects in Python
Thank you. Could you mind explaining how I was accessing a dictionary and not the code you produced?
Dec
30
comment Iterating and printing JSON objects in Python
I have already posted the format of the JSON file using Google's example, so you can see what I am trying to do to get the value of $t in feed -> entry -> title -> $t.
Dec
22
comment Youtube Send Private Message via Post
Well, this sounds fishy.
Nov
27
comment CSS3 linear gradient for top and bottom of element
Thanks for the effort. The only problem is that the content would be contained to 100px in height.
Nov
27
comment CSS3 linear gradient for top and bottom of element
I got a 404. :(
Nov
27
comment CSS3 linear gradient for top and bottom of element
I want the gradient behind each content. I just realized I suppose I can an add even-odd CSS sequence. A gradient from white (top) to whiteSmoke (bottom) for the even element, then a gradient from whiteSmoke(top) to white (bottom) for the odd element.
Nov
27
comment CSS3 linear gradient for top and bottom of element
I have used that, and that does not solve my problem of getting the background behind the text.
Nov
7
comment Split an array in Visual Basic
It still says it doesn't allow late binding even though I used .ToCharArray().
Nov
7
comment Split an array in Visual Basic
Thank you so much! It says Option Strict On disallows late binding. Any idea? *I am not turning off Option Strict on.