Posts by Weslley Ramos • 41 points
3 posts
-
1
votes2
answers137
viewsA: How to incorporate a div to the form article or the other way around?
There’s some stitches you need to fix: Everything you post needs to be inside the form (the div #chairs needs to go inside the form) Images are not sent this way in a form, you need an input with…
-
1
votes3
answers792
viewsA: Add DIV’s with different ID’s using Jquery
function guid() { return 'f' + (Math.random() * (1 << 30)).toString(16).replace('.', ''); } In a project that I’m working on, I need to generate several components and I’m using this function…
-
2
votes1
answer147
viewsA: Jquery statement that returns the last Child of different elements
To select more than one element in jquery, just pass other filters on the selector using the comma, for example to select the last image and the last H3 on the page I can call as follows: var…