Posts by KingRider • 532 points
25 posts
-
1
votes0
answers41
viewsQ: How do I create more declare the base value?
I cannot declare the value and example in the first photo Problem the record list does not provide statement the value is giving FOREARCH error I tried to add again FOREARCH Then I was able to put…
dynamics-crmasked KingRider 532 -
2
votes2
answers296
viewsA: Hide half an icon on a Card
Very simple to use awesome font, I use a lot of it I do online graphics the tool Morris.js and there is ready calls Microsoft Powerbi, well let’s go below example: Awesome Font page of sample…
-
0
votes2
answers53
viewsA: How do I fix Javascript to make it work before I choose an option in my select?
Maybe your jquery is not legal or defective, use pure javascript (no jquery) is following code below: var selecao = function() { x = document.getElementById("selected").selectedIndex; div =…
-
1
votes4
answers1757
viewsA: Empty input cannot receive zero
Following the code Lucas, function verificar of it is without restarting variable it is necessary to reset the value to apply restart, and follows the code below this corrected. function…
-
1
votes2
answers2354
viewsA: Browser Identifier - Internet Explorer
There is your browser detector to understand about @media Follow the example below: <link rel="styleSheet" href="./teste-ie.css"/> <link rel="styleSheet" href="./teste-chrome.css"…
-
1
votes4
answers175
viewsA: Comment element ID attribute
Possible to comment, but html not familiar <input /*id="blabla"*/> and only exchange element id for _id. Sending the code below, very simple code to two form jquery or pure javascript to…
-
1
votes1
answer39
viewsA: Well I cannot capture the text when I click on option 3 only returns value 3. Help
Thiago, Follows the code function teste() { if (document.getElementById('Azul').checked == true) { console.log('Azul'); } else if (document.getElementById('Vermelho').checked == true) {…
-
0
votes4
answers354
viewsA: How to put Nextel mask in an <input> with Javascript?
Use plugin Vanillamasker is pure javascript without jquery function inputHandler(masks, max, event) { var c = event.target; var v = c.value.replace(/\D/g, ''); var m = c.value.length > max ? 1 :…
-
0
votes2
answers789
viewsA: Recover data after Submit
Code is simple example to use ajax Submit File (post.php): <?php if (!empty($_POST)) { echo $_POST['texto']; } ?> File (index.html): <html> <head> <script type="text/javascript"…
-
1
votes2
answers31
viewsA: How to do more than one type="radio" field without losing value?
You cannot use the gender field type of another, you need to separate, see I changed to period, the value is not wrong. <div> <div class="col-md-12"> <label for="gender"> Melhor…
-
1
votes1
answer706
viewsA: Jquery - How to use a href link to call a dialog
Swap true for false: $("#dialog").dialog({autoOpen: false}); Just viewing as true: $(document).ready(function() { $("#dialog").dialog({autoOpen: true}); }); <link rel="stylesheet"…
-
0
votes6
answers3210
viewsA: How to remove this black border in this presentation by iframe?
Recommend to search the size on the official website to assign width/height your iframe makes automatically gets straight, can put if you want the link of various games, this my opinion is better to…
-
1
votes1
answer107
viewsA: How to fix the "charset" of an XML document?
Follow the example code: $.ajax({ url: "https://crossorigin.me/http://www.acidigital.com/rss/rss_santo.php", crossDomain: true, contentType: "application/xml; charset:ISO-8859-1", type: "GET",…
-
1
votes1
answer378
viewsA: How can I assign a php variable value to an input with Jquery
@adventist, An echo command is kind of boring from php. Try different and follow below: <?php if (isset($_POST['Termo'])) { $Termo = $_POST['Termo']; ?> jQuery(function($) {…
-
2
votes5
answers38138
viewsA: Find Jquery Datetimepicker for EN
@William, take the example code! Bootstrap with Datetimepicker <html> <head> <title>Bootstrap com datetimepicker</title> <meta http-equiv="Content-Type"…
-
2
votes3
answers5484
viewsA: Redirect page by passing "Answer" from ajax to a div
@adventistapr, So the example below on Ajax + PHP File (index.html): <html> <head> <script type="text/javascript"…
-
9
votes14
answers126839
viewsA: Phone Mask Using jQuery Mask Plugin
I found a pure flame javascript Vanilla Masker and hard to find. Between the code http://codepen.io/KingRider/pen/qNxror or below function inputHandler(masks, max, event) { var c = event.target; var…
-
1
votes2
answers6493
views -
2
votes1
answer56
viewsA: documentations and links about the Hover effect
I copied from the site and lack icone, this does not load googleapis is copyright, use Fontawesome (http://fontawesome.io) can help. flw <html> <link…
-
2
votes2
answers179
viewsA: How do I redirect a page by clicking an option from a select by google Chrome?
Hum.. Code almost certain is missing close }) and use prevent $("#select-native-fc").trigger("click"); $(document).ready(function(){ $("#select-native-fc").on('click', function(){…
-
0
votes3
answers9570
viewsA: Update DIV without refreshing the JQUERY page
I’m sending the example how to use ajax updates without updating the page. Behold $('div#lista').html(texto); it’s really place (html), and want to insert more text $('div#lista').append(texto);…
-
0
votes2
answers781
viewsA: Delete all console logs
Supports Chrome & IE, not tested Opera and Firefox for testing is thanks. While error is just look at the tutorial https://msdn.microsoft.com/pt-br/library/dd548687(v=vs.94). aspx see you around…
javascriptanswered KingRider 532 -
1
votes2
answers1092
viewsA: Menu css separated by bar
See this... with horizontal bar. ul { display: inline-flex; padding: 0; margin: 0; border: 1px solid white; } ul li { list-style-type: none; padding: 10px; border-right: 1px solid black; } ul…
-
1
votes1
answer552
viewsA: How to load a bar within a Javascript load() bar?
Follow the example below: <html> <style> div#loading { width: 100%; height: 100%; display: table; background-color: rgba(0,0,0,0.5); position: fixed; z-index: 9999; } </style>…
-
0
votes2
answers1182
viewsA: Upload Json to Google Maps
var vareaRegiao = $.getJSON("/projto/Pontos.json", function (json) { return json; } Make the result vareaRegiao[numero de chave].lat and vareaRegiao[numero de chave].lng I’ll set an example:…