jquery flexbox ?
I'm using right now FlexBox plugin to make search box, everything work fine but how can i make the css work perfectly with the search box ( the css file that downloaded with flexbox )
I have the following html
<form action="result.php" method="post">
<div id="suggest"></div>
</form>
and the flexbox callback
$(function(){
// begin to write
$("#suggest").flexbox('back/search.php', {
width: 350,
method: 'post',
watermark: 'Enter value',
noResultsText: 'No Value开发者_高级运维',
maxVisibleRows: 8,
containerClass: 'ffb',
contentClass: 'content',
inputClass: 'ffb-input',
arrowClass: 'ffb-arrow'
});
});
Open the page in Chrome. Right click and click Inspect Element
You need to create a CSS Stylesheet for the code that you see during inspect element
.
Alternatively, you could use this to view what's actually in the HTML DOM when you are viewing the page.
html:
<textarea id="whats_in_dom"></textarea>
jQuery
$('textarea').text($('/*container holding flexbox*/').html());
example: http://jsfiddle.net/DGDrx/
精彩评论