Is there any way to remove this duplicate code?
ldbShow.css({
'left': 'auto',
'top': 'auto'
})
ldbForum.css({
'left': 'auto',
'top': 'auto'
})
I was thinking about something like this:
(ldbForum, ldbShow).css({
'left': 'auto',
'top': 'auto'
})