jQuery - Table row highlight
My first task that I had set out to do was to replace this table row highlighter that was found from somewhere on the web to be using jquery instead. I found that this task to be extremely easy with jquery. The syntax are as follows:
First ofcourse download the jquery library from http://jquery.com/ and include it into your html.
Then do the following:
jQuery:
/*basically toggles the hoverHighlited class everytime the mouse enters the row */
$(function(){
$('tr#highlight_row').hover(function(){
$(this).toggleClass('hoverHighlighted')
});
});css:
Update on my progress
As of now I am currently starting my research on my Masters Thesis so will be posting about that quite a bit as time goes on. I will be using C++ to implement an optimized bottom up cubing to use to determine emerging patterns.
Emerging patterns are itemsets/patterns that show significant increase in support given two datasets. We will be using:
DPminer: Which is an algorithm used to find key's, generators and closed patterns given a set of datasets. Thus far is the fastest algorithm to determine closed patterns.

