Posts by marciop • 131 points
10 posts
-
0
votes4
answers95
viewsA: Add a "pass" limit to a Carousel slider
See if there are sibling elements of the slider element, or count the number of standard elements of the slider that exist, in case if it is 1 or smaller, Voce does not show the controls. For this…
-
1
votes1
answer179
viewsA: SELECT display difference between browsers
Hello, See if you can find something cool that fits your browser support requirements. http://www.jqueryrain.com/demo/jquery-selectbox-plugin/ Some cool experiments with select too, just need to…
-
0
votes3
answers247
viewsA: Background Reponsivo
Hello, You could try: background-image:url('../images/bg.png'); background-repeat:no-repeat; background-size:contain; background-position:center; No width, height or margin. If it doesn’t work…
-
1
votes2
answers3250
viewsA: How to submit form without being redirected by the action attribute?
Opa, Dude, I think it’s enough to get preventDefault() in the form Ubmit, right? That inside a delegate because it will be loaded via ajax. For example:…
-
1
votes2
answers483
viewsA: Smooth scroll without anchors
Opa, Very cool the effect, I did not know yet this type of slider. I did a search and found something that can be useful: http://portfoliojs.com/ Who knows using the plugin base mentioned above you…
-
1
votes2
answers16534
viewsA: Dynamic page break when printing (in <table>)
Are there texts in the reports outside the tables? Or are they just tables you want to print? I have an example here only with multi-page table, which worked perfectly, using only the css controls…
-
2
votes5
answers45121
viewsA: How to use a PHP variable in javascript?
PHP and Apache are responsible for interpreting the php page and sending back to client, user browser, html code and in this process php can send javascript code within html according to processing.…
-
0
votes2
answers659
viewsA: Play video in the app or out
Thinking from the point of view of the user, I would prefer the video to open inside the application instead of the App to be minimized and open the file in an external player, because, always has…
-
4
votes2
answers290
viewsA: Autocomplete for forms
You can do something by using Jfiller: http://www.ajaxblender.com/jfiller.html Or extensions to Chrome: https://chrome.google.com/webstore/detail/form-filler/bnjjngeaknajbdcgpfkgnonkmififhfo Or the…
-
0
votes3
answers9603
viewsA: Create custom page for user registration
Inside this new template you use the own WP pro CRUD API of users: For example the wp_create_user function, shown below: http://codex.wordpress.org/Function_Reference/wp_create_user If the page…