Link to home
Start Free TrialLog in
Avatar of MJ
MJFlag for United States of America

asked on

What is the valid CSS Selector Chain for this situation?

What would the valid CSS Selector Chain for the span displaying the routing number?

 
<table class="rich-table home table" id="startForm:PendingReviewApps" border="0" cellpadding="0" cellspacing="0"><colgroup span="0"></colgroup><thead class="rich-table-thead"><tr class="rich-table-header  "><th class="rich-table-headercell  " scope="colgroup">Accounts Being Reviewed</th></tr></thead><tbody id="startForm:PendingReviewApps:tb"><tr class="rich-table-row rich-table-firstrow "><td class="rich-table-cell " id="startForm:PendingReviewApps:0:ProductSummaryForDepositApplicationId" style="width:80%"><span id="startForm:PendingReviewApps:0:ProductLabelForDepositAppId" style="font-size:14pt;">Easy Checking</span>
		<br />
		<p style="padding-left: 20px"><span id="startForm:PendingReviewApps:0:routingNumberSpan">
		Routing number:<span id="startForm:PendingReviewApps:0:RountingNumberForDepositAppId" style="font-weight:bold;">  121100782</span>
				<br /></span><span id="startForm:PendingReviewApps:0:intFundingAmtSpan">
			Initial funding amount: $<span id="startForm:PendingReviewApps:0:InitialFundingAmountForDepositAppId" style="font-weight:bold;">100.00</span>
				<br /></span>
		</p></td></tr></tbody></table>

Open in new window


Would it be "p.startForm:PendingReviewApps:0:RountingNumberForDepositAppId" ? Sorry never had to use Selectors before so I'm assuming this is extremely easy, just want to ensure I do this properly!

Thanks!
ASKER CERTIFIED SOLUTION
Avatar of Nicholas
Nicholas

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of MJ

ASKER

Thank you very much!
just use id, no need to add p

$("#startForm:PendingReviewApps:0:RountingNumberForDepositAppId")