Questions tagged as 'jquery'

3
answers

Get the value of select

My Select looks like this: <select class="input-medium ajuste" id="sel_mes"> <option value="09/03/2014">Março - 2014</option> <option value="09/04/2014">Abril - 2014</option> <option value="09/05/2014">...
asked by 09.03.2015 / 21:39
4
answers

How to show warning "Refresh your Browser" when it does not support HTML5?

How to display the "Update Your Browser" warning when the user's browser does not support HTML5 tags or CSS3 properties? An initiative that encourages this is the link site, but they do provide a script for it. Would it be possible to...
asked by 13.01.2015 / 13:08
2
answers

The class is not built into the DOM (JQuery)

Next code: <script> $(document).ready(function() { $("#inicio").hover(function() { $("#inicio").addClass("fogo"); $("#inicio").removeClass("fogo"); }); }); </script> And the HTML: <li><a id="inicio">Inicio</a&...
asked by 31.12.2014 / 21:59
2
answers

Consult CPF at IRS

I would like to somehow check the person's name through the CPF on the recipe site. There are applications on android that just put the CPF and it brings the name and the cadastral situation. But the site has a captcha. Has anyone ever done a...
asked by 01.07.2015 / 22:09
2
answers

How to prevent a plugin from conflicting?

I'm writing a plugin for tables called easyTable . After understanding the basic operation of a plugin and how it can perform a thread I read in the documentation that to avoid the conflict it should look like this: (function ( $ ) {...
asked by 10.03.2016 / 18:08
2
answers

How to get the JSON return via jQuery?

I have a Click to Call link that returns me a JSON. How do I get the data generated in JSON via jQuery? Link: http://192.168.0.6:8080/G4FlexWS/rest/flexuc/clicktocall/ext/telefoneOrigem/telefoneOrigem/telefoneDestino Return in JSON:...
asked by 28.05.2014 / 14:29
3
answers

Select "select" element with jquery

I created on my page a select multiple and I need to get its values in PHP as vector, so I added [] to the end of the name. Example: <select id="selecionados[]" name="selecionados[]" size="20" multiple "> <option value=...
asked by 07.07.2014 / 20:20
2
answers

How to drag elements using dragSort inside a div with scroll?

I need elements to be dragged only within a div that has scroll. For example: HTML <ul id="list1"> <li><div>1</div></li> <li><div>2</div></li> <li><div>3</div&...
asked by 20.06.2014 / 19:48
2
answers

Ajax request to return error 403 Forbidden?

I have the following code on my site. setInterval(function(){ var id = $("#id_radio").val(); var id_glob; $.ajax({ type: "POST", url: "ajax/update_radio.php", data: "id="+id, success:function(e){...
asked by 30.05.2018 / 11:01
2
answers

div that works like a textarea does not break line when it is sent

I have a comment plugin for WordPress which has a small problem. It works like this: It is a <div> that works as if it were a <textarea> , only because it works like this, when the user wants to type a comme...
asked by 07.07.2014 / 22:42