I'm making a responsive website when I came across a problem, in the tablet layout the menu gets hidden so when you press the button it appears by making a slide, but the client wants the logo to appear on top of the other menus. In the layout f...
Oops! It was pointed out that when the function was executed, the class that #body would receive would be random among existing ones. Example:
$(document).ready(function(){
$('#random').click(function(){...
I want to put a background video on a standby screen. Can you do this by pulling a video from youtube without showing the default buttons and starting it automatically?
What Jquery do I have to put the video that is on my host.
$('body').bg({...
I'm with this doubt,
How do I put a base64 background image into a div, dynamically using jquery?
I know it's normal to use this way:
background-image: url('data:image/jpg;base64,AQUI VEM O CODIGO BASE64');
But dynamically I do not kno...
I have the following problem:
There is a page where I use $ .ajaxStop to give a $ .unblockUI (modal plugin), this closes the modal "loading ..." whenever ajax page requests finish loading, $ .ajaxStop serves as a "standard" for all document r...
Well, I'm trying to build a custom context menu that will work inside a register table. The problem is that I need to get the ID that is inside each line () and call it in the menu link (Edit.php? Id =).
Follow my code so you can see how it i...
I'm using the bootstrap and I have a menu, what I wanted was that when I clicked on a link from that menu, I'd display the page and leave the page that the user selected on the menu.
I tried to assign a class using the .addClass() fu...
Personal I'm using the JQuery multiselect plugin link .
It happens that it is giving me two difficulties.
The first difficulty is with CSS: I need to change the colors that it places in checkboxes and fonts. I've already looked for where...
I need to create a link where I have the input name in the table using the DataTables, this link should call a javascript function. The problem is that when the table is loaded it runs the script for each row of the table, as if all the links we...
I am making an ajax code request:
$.ajax({
type:"POST",
url:"url.php",
data:{
ida : href,
},
beforeSend: function(){
},
success:function(data){
$("#mapa").html(data);...