Posts by Munir Baarini • 673 points
61 posts
-
0
votes1
answer96
viewsQ: Save status and contents of last clicked tab
I have a page with some tabs that load content through the resource. load, I would like that after returning to this page the last clicked tab remains marked and the content called via load…
jqueryasked Munir Baarini 673 -
0
votes0
answers53
viewsQ: Insert class to an invisible element
How do I insert a class via jQuery to an element that is not visible on the page?
jqueryasked Munir Baarini 673 -
0
votes1
answer69
viewsQ: A lot of information on auto complete
It is possible to insert a large amount of information into an auto complete and indent this information as image?…
-
0
votes0
answers36
viewsQ: Differentiated plugin of auto complete
good afternoon, does anyone know any auto complete plugin that returns a large amount of database information, but in input text displays only one term?…
self-cmpleteasked Munir Baarini 673 -
1
votes0
answers35
viewsQ: Make div visible after encountering another div on the page scroll
How would it be possible to make a div visible after it meets another div in the scrolling of the page, using javascript or jQuery?
jqueryasked Munir Baarini 673 -
1
votes2
answers44
viewsA: Make an image grow proportionately to specific limit
Use only the max-width property, as an example below: div.imagem img{ max-width:100%;// primeira imagem } You have already set the size of the area where the image will be inserted, so the image…
cssanswered Munir Baarini 673 -
0
votes4
answers63
viewsA: How to make a slideshow accessible to ringtones on smartphones?
If you’re using jQuery to build the slideshow script, in addition to the click event, add the touchend event as well.
-
3
votes1
answer712
viewsQ: update page content automatically
How can I display in the browser changes made to the stylesheet without using the meta tag refresh? This is only possible using javascript?
cssasked Munir Baarini 673 -
2
votes4
answers21716
viewsA: "Height: 100%" does not occupy all height
To determine 100% height for elements using css, it is necessary that the 100% value for the "height" property of the "body" and "html" tags is inserted in the stylesheet, in this way: html,body{…
cssanswered Munir Baarini 673 -
1
votes2
answers130
viewsA: Overlay information when using Media Queries
Use the Chrome tool to test your layouts for mobile versions, with this feature you can identify the css that is being used in a particular part of the site and fix it promptly.
-
1
votes2
answers2457
viewsA: Loading page with Jquery
Another option is to use the resource .load() jQuery: $(window).load(function() { $(".loader").fadeOut("slow"); }) After window load, widget with class .loader vanishes. @updating: The methods…