Go Back   SitePoint Forums > Forum Index > Program Your Site > JavaScript
Newsletter FAQ Members List Calendar Mark Forums Read

New to SitePoint Forums? Register here for free!

SitePoint Sponsor
 
Reply
 
Thread Tools Display Modes
Old Nov 7, 2009, 10:27   #1
lauthiamkok
SitePoint Zealot
 
Join Date: Dec 2008
Posts: 175
jquery: how to find the children inside an element

Hi,

How can I find if each of the <p> tags contains <img> tag, then style the <p> tags which contain <img> inside them?

I have pre-set all <p> will have this style,
Code:
<style>
p { padding:0px 0px 20px 0px;}
</style>
The function to re-style the <p> which contains <img> inside them,
Code:
$(document).ready(function(){
	
	if ($('p img').length >0) {
		$("p img").css({
		padding: '0px'
		});
	}
});
The HTML,
HTML Code:
<div id="content">
<p><img src="img.jpg"/></p>
            
<p>Lorem ipsum dolor sit amet</p>
            
<p><img src="img.jpg"/></p>
            
<p>Lorem ipsum dolor sit amet</p>
</div>
Is it possible?

Thanks,
Lau
lauthiamkok is offline   Reply With Quote
Old Nov 7, 2009, 17:04   #2
semantic7
SitePoint Addict
 
Join Date: Apr 2007
Posts: 241
Code:
$('p').each(function(){
     if($(this).find('img').length != 0){
          $(this).css('padding', '0px');
     }
});
semantic7 is online now   Reply With Quote
Old Nov 7, 2009, 17:51   #3
crmalibu
SitePoint Wizard
 
Join Date: Jul 2008
Posts: 4,774
Could also
Code:
$("img").closest("p")
//or
$("img").parents("p")
crmalibu is offline   Reply With Quote
Old Nov 7, 2009, 19:38   #4
lauthiamkok
SitePoint Zealot
 
Join Date: Dec 2008
Posts: 175
hey thank you guys! got it.

$("img").parent("p").css({
padding:'0px'
});

Thanks!
Lau :-)
lauthiamkok is offline   Reply With Quote
Reply

Bookmarks

« Previous Thread | Next Thread »

Thread Tools
Display Modes

 
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Sponsored Links
 
Forum Jump


All times are GMT -7. The time now is 18:12.


Powered by vBulletin® Version 3.7.1
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Copyright 1998-2009, SitePoint Pty Ltd. All Rights Reserved