Posts by Patrick A Lima • 43 points
3 posts
-
1
votes0
answers139
viewsQ: Share Sessions with different domains on different servers
I have a little problem. We have 3 sites site1.com site2.com and site3.com. The one site is our master site where we register users and where they log in. We use SESSION to 'LOGIN'. Our problem is…
-
0
votes3
answers899
viewsA: Div on DIV Fixed
#fixada{position:fixed; background:black; height:40px; width:100%; bottom:0px;} #botao{position:absolute; width:40px; height:40px; background:red; left:0;} <div id="fixada"> <div…
-
3
votes1
answer198
viewsQ: Getting whole words with Regexp in Jquery
$.fn.wrapInTag = function(opts) { var tag = opts.tag || 'strong', words = opts.words || [], regex = RegExp(words.join('|'), 'gi'), replacement = '<' + tag + '>$&</' + tag + '>';…