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

  • Home
  • SEARCH
  • 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 141005
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T07:42:25+00:00 2026-05-11T07:42:25+00:00

I’m trying to access a drop down box from a page created by SQL

  • 0

I’m trying to access a drop down box from a page created by SQL Server Reporting Services using JavaScript. I would normally just getElementById but the the id and name attributes for the drop down element are generated by the server so I don’t want to use that to reference the element. i.e. If the design of the page changes in the future it’ll name that elements _ct105 or _ct107

The only thing I specify on the page is the label ‘Business Period.’ I was thinking of using xpath to reference that span then use a relative location to the next select element but I can’t figure out how to do that.

Ideally, I’d be able to specify the id or name (or any other attribute) of the Select element itself. Is this possible?

I’ll be using jQuery on the page so if anyone can think of a good way to find it that way it’d be great.

<tr IsParameterRow='true'> <td class='ParamLabelCell'>     <span>Business Period</span> </td> <td class='ParamEntryCell' style='padding-right:0px;'>     <div>         <select name='ctl140$ctl00$ctl03$ddValue' id='ctl140_ctl00_ctl03_ddValue'> <!-- This is the select box I want -->             <option value='0'>&lt;Select&nbsp;a&nbsp;Value&gt;</option>             <option value='1'>Customer</option>             <option value='2'>Previous&nbsp;Week</option>             <option value='3'>Current&nbsp;Week</option>             <option value='4'>Next&nbsp;Week</option>         </select>     </div> </td> 
  • 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. 2026-05-11T07:42:25+00:00Added an answer on May 11, 2026 at 7:42 am

    If you’re already using jQuery then XPath is going to be overkill. I see a few different approaches to get at it in jQuery. jQuery uses CSS selectors, so that’s how these all work:

    /* this attaches to selectboxes, which are in a div,  * which is in a [TD] with class ParamEntryCell  */  $('td.ParamEntryCell div select');  /* selects a selectbox whose id attribute starts with 'ctl'   * in an element with class ParamEntryCell    */  $('.ParamEntryCell select[name^='ctl']')  $('td.ParamEntryCell div select');  /* selects a selectbox whose id attribute starts with 'ctl'   * in an element with class ParamEntryCell    */  $('.ParamEntryCell select[id^='ctl']') 

    Then to use one of these you would simply use jQuery’s build in methods:

    $('.ParamEntryCell select[id^='ctl']').change(function(){     var val = $(this).val();     alert(val); }) 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 115k
  • Answers 115k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Do this: import sys sys.exc_info() It will give you information… May 11, 2026 at 10:27 pm
  • Editorial Team
    Editorial Team added an answer Here are some commercial providers that have the type of… May 11, 2026 at 10:27 pm
  • Editorial Team
    Editorial Team added an answer Using QObject.Sender is one of the solution, although not the… May 11, 2026 at 10:27 pm

Related Questions

I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
I am currently running into a problem where an element is coming back from
Seemingly simple, but I cannot find anything relevant on the web. What is the
Configuring TinyMCE to allow for tags, based on a customer requirement. My config is
Is it possible to replace javascript w/ HTML if JavaScript is not enabled on

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.