When you apply this script to scroll smoothing (nicescroll), the same thing happens under some site items with the higher Z-index. Where can I for a Z-index on it to overlap this site items?
$(document).ready(
function() {
$("html").n...
I would like to click the remove table row button, execute an ajax function that would pass the line id to the java method. The deletion on the page works, but I can not get the id to exclude the right item in the arrayList in java.
$("#associ...
I have a% div of%, that when it hits 31px it stays with .menuFixo , otherwise, top: 0 , did with Jquery, but did not work. >
$(window).scroll(function () {
if ($(window).scrollTop() > 31) {
$(".menuFixo").css("top",...
I created an App for Sharepoint and within the project I added a Webpart.
I wanted this Webpart to grow or decrease dynamically based on its content.
I tried to add some code from outside the app, but I ran into security issues, so I wante...
How can I list multiple ul within a li , dynamically, with AJAX?
Something like ul>li>ul>li>ul>li
The question arose because I'm making a linear network of an MMN system and I can not dynamically load...
I have this code marquee here:
<marquee direction="left" onmouseover="this.stop();" onmouseout="this.start();" scrollamount="2" height='18px' width='180px'>MEU TEXTO</marquee>
I would like the text to scroll ONLY when I h...
I have a problem using jquery.load () p to load part of another document that only occurs in Safari on the Mac (in the latest versions: Safari 7.1 and OSx 10.9.5). In all other browsers (including IE) they work perfectly.
The error in the Saf...
I'm trying to do something like this: link
where the div containing the values of the purchase is fixed only while the customization options are visible, but I believe that it is not possible to do this with 'fixed', the only thing I have mana...
How to ignore the cursor position on the scroll bar?
JSFiddle
var margem = 0;
function criarBarraDeRolagem(){
if ($( document ).height() < $( window ).height())
{
return;
}
var tamanho = $( window ).height() / $( document ).height(...
I have an application where I click on the row of a table, jquery takes the id of the table row, assembles a URL and places it inside a
The problem is that I am not able to make the attr. run in IE, I already tested it on chrome an...