Link to home
Start Free TrialLog in
Avatar of Steve Tinsley
Steve TinsleyFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Prepend and slidedown

I have a script which checks for new rows and prepends them to the top of the list.

I would like the prepend to be nicer.

Perhaps with a slide-in and fade. As well as slide down the others that are already in the list.

Currently I have this:

function prepend(rowData) {
  $(".div").prepend(htmlData);
}

Open in new window


but it is very clunky.

Could anyone help with some nicer looking animation.

Thanks

Steve
ASKER CERTIFIED SOLUTION
Avatar of leakim971
leakim971
Flag of Guadeloupe image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Steve Tinsley

ASKER

Thanks for that. Worked first time!