Click here to Skip to main content
15,916,683 members
Home / Discussions / JavaScript
   

JavaScript

 
AnswerRe: Java Script Slider Pin
Afzaal Ahmad Zeeshan18-Mar-15 2:14
professionalAfzaal Ahmad Zeeshan18-Mar-15 2:14 
GeneralRe: Java Script Slider Pin
Member 1146339918-Mar-15 2:43
Member 1146339918-Mar-15 2:43 
GeneralRe: Java Script Slider Pin
Afzaal Ahmad Zeeshan18-Mar-15 3:47
professionalAfzaal Ahmad Zeeshan18-Mar-15 3:47 
Questiongetting JSON data in much smaller way. Pin
Asif Rehman14-Mar-15 21:01
Asif Rehman14-Mar-15 21:01 
AnswerRe: getting JSON data in much smaller way. Pin
NAEEM272716-Mar-15 21:53
NAEEM272716-Mar-15 21:53 
AnswerRe: getting JSON data in much smaller way. Pin
Kornfeld Eliyahu Peter18-Mar-15 1:39
professionalKornfeld Eliyahu Peter18-Mar-15 1:39 
QuestionRe: getting JSON data in much smaller way. Pin
Asif Rehman19-Mar-15 0:25
Asif Rehman19-Mar-15 0:25 
AnswerRe: getting JSON data in much smaller way. Pin
Kornfeld Eliyahu Peter19-Mar-15 0:35
professionalKornfeld Eliyahu Peter19-Mar-15 0:35 
QuestionConnect a radio button, select box, and checkbox within a function. Pin
Member 1150835012-Mar-15 17:53
Member 1150835012-Mar-15 17:53 
QuestionThe Timer displayed is 1 hr (HH:MM:SS) in decrement order. I have to display a pop out when 50 mints complete after that remaining 10 mints one pop up should display saying 10 mints with 0 sec. After that for every 2 mintues the pop up appear showin Pin
Member 115026795-Mar-15 18:39
Member 115026795-Mar-15 18:39 
QuestionRe: The Timer displayed is 1 hr (HH:MM:SS) in decrement order. I have to display a pop out when 50 mints complete after that remaining 10 mints one pop up should display saying 10 mints with 0 sec. After that for every 2 mintues the pop up appear sh Pin
ZurdoDev11-Mar-15 9:47
professionalZurdoDev11-Mar-15 9:47 
QuestionHow I make a javascript wedget to place another website wedget Pin
Member 115008415-Mar-15 1:19
Member 115008415-Mar-15 1:19 
QuestionUnit testing for JavaScript/JQuery Code Pin
SaranshSrivastava28-Feb-15 20:53
SaranshSrivastava28-Feb-15 20:53 
Questionimage preview and save to a folder Pin
Member 1116631824-Feb-15 6:35
professionalMember 1116631824-Feb-15 6:35 
AnswerRe: image preview and save to a folder Pin
ZurdoDev24-Feb-15 11:01
professionalZurdoDev24-Feb-15 11:01 
AnswerRe: image preview and save to a folder Pin
Afzaal Ahmad Zeeshan28-Feb-15 22:06
professionalAfzaal Ahmad Zeeshan28-Feb-15 22:06 
GeneralRe: image preview and save to a folder Pin
Afzaal Ahmad Zeeshan16-Jun-15 5:43
professionalAfzaal Ahmad Zeeshan16-Jun-15 5:43 
GeneralRe: image preview and save to a folder Pin
Simewu16-Jun-15 12:08
professionalSimewu16-Jun-15 12:08 
AnswerRe: image preview and save to a folder Pin
Simewu16-Jun-15 12:09
professionalSimewu16-Jun-15 12:09 
Questionauto submit form Pin
joe-hanh24-Feb-15 6:22
joe-hanh24-Feb-15 6:22 
AnswerRe: auto submit form Pin
Afzaal Ahmad Zeeshan24-Feb-15 6:47
professionalAfzaal Ahmad Zeeshan24-Feb-15 6:47 
GeneralRe: auto submit form Pin
joe-hanh25-Feb-15 2:31
joe-hanh25-Feb-15 2:31 
QuestionGet selected Li from UL Pin
indian14323-Feb-15 15:02
indian14323-Feb-15 15:02 
Hi All,

I have an Unordered List which has many list items, and when we select a li, it opens up two spans, in one of the Span we have have radio buttons, I want to get the baseURL field that is attached to the li that I am selecting so that, can any one please help me any code snippet, link or even suggestion would be helpful. Thanks in advance.

All I want is either to get the report-url attribute or value of the span under the li that is selected or we can say active, I tried in the following ways but couldn't succeed, by the way I have to get these values when I click on the radio button that is within this list item, please help me.

var listitm = $("#li.report active");
var ttl = listitm.find('span.title').toString();
alert(ttl);


<li class="report active">
  Enrollment by Child
  
    Lists children with their age, poverty level, IEP status, priority points and first and last days attending class. <br>
      <br>This report includes children who have started class and children with an expected start date in the future.  The "As of" date version of this report includes children with a pending exit or with an exit on the "As Of" date. The "Cumulative" version of this report includes all children who exited during the reporting period. Children who never attend class are subtracted from this report upon exit or transfer.
  <div id="report-parameters" style="position: relative; background-color: rgb(255, 255, 255);">
    <div id="parameterList" class="my-container form report-parameters">
      <div id="phb_valSummary" class="ValidationSummary" style="display:none;">

      </div>
      <div id="phb_happySummary" class="SuccessSummary" style="display:none;">

        <div class="close" title="Close the saved successfully notification.">x</div>
      </div>
      <div id="phb_warnSummary" class="WarningSummary" style="display:none;">

      </div>

      <h2>Report Parameters for Enrollment by Child Report</h2>

      <div id="phb_pnlParam_SchoolYear" class="my-section col divider">

        <label for="phb_ddlSchoolYear" id="phb_lblSchoolYear" class="req">School Year</label>
      </div>
      <div class="my-section action-buttons">
        <input type="submit" name="ctl00$phb$btnRunReport1" value="Run Report" id="phb_btnRunReport1" style="width: 115px; background-image: url(http://localhost/ELMS/Reports/Image.axd?t=Run+Report&r=0&g=178&b=214&p=20&h=25); background-color: transparent;" />
      </div>
    </div>
    <span style="position: absolute; top: 5px; right: 20px; cursor: pointer;">- Hide Parameters</span>
  </div>
</li>

Thanks & Regards,

Abdul Aleem Mohammad
St Louis MO - USA


modified 24-Feb-15 12:20pm.

AnswerRe: Get selected Li from UL Pin
Matt U.24-Mar-15 9:59
Matt U.24-Mar-15 9:59 
AnswerRe: Get selected Li from UL Pin
Simewu15-Jun-15 15:23
professionalSimewu15-Jun-15 15:23 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.