Using jquery i'm creating searchboxes that pull data from a MYSQL DB. How can I add tooltips into this:
--- You must not fight too often with one enemy, or you will teach him all your tricks of war.
Code:
var impact_header_text = $("<div>Impact (EX: Panic)</div>"); <-- display header
var impact_search_box = $('<input>') <--actual searchbox
.attr('id', 'impact')
.addClass('stat_table_search_field')
.change(function (event) {
current_pane.send_get_burt_data();
});
var impact_header = $("<th>")
.append(impact_header_text,
impact_search_box
);
--- You must not fight too often with one enemy, or you will teach him all your tricks of war.