Posts by Lucas Lima Muller • 126 points
4 posts
-
1
votes2
answers432
viewsA: PHP output inside a CSS modal
First create your modal with HTML and CSS, and leave it hidden, I suppose you already know how to do this, in case you don’t know just ask what put the code. After you have created your php variable…
-
1
votes5
answers1500
viewsA: Keep displaying the date and time in the javascript browser
If you want to show the current time, use the object Date() javascript. Observing As the months are returned in numbers and the day of the week as well, I created an array for the months and one for…
javascriptanswered Lucas Lima Muller 126 -
1
votes3
answers284
viewsA: Div with fixed position on the screen within the boundaries of another div
Below is the code I made imitating what happens in the example you sent. Can be seen here too: http://codepen.io/anon/pen/XbwaRB?editors=010 Explaining: The names of the variables already explain so…
-
8
votes2
answers1596
viewsQ: Create Javascript Library
I would like to know how to create my own javascript library, ie, create functions that can be reused in various projects and with easy customization. I know that there are already several libraries…