halben Posted September 18, 2013 Share Posted September 18, 2013 I have the following: The Inspected element from the combo box. <div class="x-combo-list-inner" id="ext-1111"> <div class="x-combo-list-item">Target</div> <div class="x-combo-list-item">Partner</div> <div class="x-combo-list-item">Other</div> <div class="x-combo-list-item x-combo-selected">Too small</div> </div> I am trying to get the selected value "Partner" from it. here's my jquery: $('.x-combo-list-item').click(function() { var item = $(this).data('item'); var isPartner = ??? if (item === (??I'm Stuck here??)) { alert('You have selected Partner!'); // Fire your ajax call here /* $.post('handler.php', {data: data : {even: 'more data'}}, function(data), 'json'); */ } }); I'm stuck on getting the selected value from the COMBO BOX. I did found something online that could be a solution: var isPartner = _getText(_byId("ext-gen484").childNodes[2]); But I'm not sure how to translate that to javascript. Can someone please help me? Quote Link to comment https://forums.phpfreaks.com/topic/282245-help-get-selected-value-from-combo-box/ Share on other sites More sharing options...
fastsol Posted September 18, 2013 Share Posted September 18, 2013 (edited) $('.x-combo-list-inner').change(function() { var item = $(this).text(); If that doesn't work, try this $('.x-combo-list-inner').change(function() { var item = $(this + " option:selected").text(); Edited September 18, 2013 by fastsol Quote Link to comment https://forums.phpfreaks.com/topic/282245-help-get-selected-value-from-combo-box/#findComment-1450074 Share on other sites More sharing options...
Solution halben Posted September 18, 2013 Author Solution Share Posted September 18, 2013 Thanks for helping, I figured it out. Here's what I have: $('.x-combo-list-item').click(function() { var item = $(this); if (item.text() === "Partner") { alert('You have selected Partner!'); // Fire your ajax call here /* $.post('handler.php', {data: data : {even: 'more data'}}, function(data), 'json'); */ } }); Quote Link to comment https://forums.phpfreaks.com/topic/282245-help-get-selected-value-from-combo-box/#findComment-1450077 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.