Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4247518
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T04:07:04+00:00 2026-05-21T04:07:04+00:00

Should be simple but my mind is tired. How to get this jQuery to

  • 0

Should be simple but my mind is tired. How to get this jQuery to select an ASP.NET server control with an id like lblName. The IDs are different and coming in through the id variable.

var id = 'Name';    //an example
var $element = $("#<%= 'lbl'+ id.ClientID %>");
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T04:07:05+00:00Added an answer on May 21, 2026 at 4:07 am

    Instead of using the “<%=” tags I would suggest using the partial selectors in jquery. So your selector would look like this

    var $elements = $("[id*=lbl]");  //This selector if you want to get all controls that have "lbl" in the id
    var $element2 = $("[id$=lblName]"); // This selector if you know the id specified and want that specific control.  It will return all matches that end with "lblName"
    
    $= is "EndsWith"
    ^= is "StartsWith"
    *= is "Contains"
    

    This will enable you to select your controls and be able to move those selectors to an external js file instead of having to be on the same page as the control.

    EDIT: Switched selector to “Contains”. The reason behind this is if you are not using .net 4.0 or you have not switched off the auto generated ids your rendered ids will be something like this: “cto001$Somethingsomething${specifiedId here}” (without the {}). So you can’t use the “Startswith” selector as that is trying to match on a dynamic part of the id.

    You won’t be able to do the ends with as the last part of your id is also dynamic. So we are left with the “Contains” selector which will match any control that contains “lbl”. You may consider making the first part of the Id (non-dynamic part) less general to avoid returning unrelated controls.

    EDIT2: If you are using .net 4.0 you can turn off the autogenerated Id thing and then you can use the nicer “StartsWith” (^=) selector as the rendered output id would be the same as you specified. You can do this by setting the ClientIDMode to “Predictable”

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This should be totally simple but I can't get it working no matter what
Seems like this should be simple, but powershell is winning another battle with me.
Should be simple but I couldn't find the answer, I would like to place
I think this should be simple but I am having some difficulty implementing it.
This should be simple, but the answer is eluding me. If I've got a
This should seem simple enough, but can't figure it out. I was porting a
I know this should be simple and I should know it but it's eluding
This should be a simple question, but I haven't been able to find a
I think this should be a rather simple thing to do, but I'm completely
I have what should be a simple thing but my unfamiliarity with .NET and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.