The code is as follows:
<div id="compv-navbar">
        <a href="#"><img src="image1.png" id="icon1"></a> | 
        <a href="#"><img src="image2.png" id="icon2"></a> | 
        <a href="#"><img src="image3.png" id="icon3"></a> | 
        <span id="view_name"> 2-up</span>
    </div>
The jQuery is as follows:
$("#icon2")
            .qtip ({
                   content: 'Placeholder Text.',
                   show: 'mouseover',
                   hide: 'mouseout'
                  })
The above works, however, I want to select both 'icon2 & icon3'.
I tried doing $('#icon2 #icon3') and that didn't work.