Posts by Gil Barbara • 66 points
4 posts
-
0
votes2
answers94
viewsA: When decreasing the browser window the position of the Labels is changed
Using an element with position:Fixed its position is relative to window not to graph as you were expecting. Fixed is used when you keep an element attached to a position, for example a header that…
javascriptanswered Gil Barbara 66 -
0
votes3
answers2236
viewsA: Is there any way to make a standard browser tooltip appear without putting the text in the title tag and without tooltip plug-in?
You can customize the options when you initialize the Popover and return the title attribute to the original value. $('a').popover({ container: 'body', html: true, template: '<div…
-
3
votes3
answers12452
viewsA: How to perform a function after two or more asynchronous events?
Complementing the Jordan example, you could also use the jQuery.Deferred object as well as running a few tests on $.when to make sure everything was executed correctly and then solve this Deferred…
-
2
votes7
answers31206
viewsA: How to insert data into DB with jQuery/Javascript without using PHP?
Cannot use Mysql directly with javascript/jquery without a script running on the server side as previously stated. But for simple use like yours, you can download a script like this REST-API and…