Questions tagged as 'jquery'

1
answer

Z-index on NiceScroll

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...
asked by 26.02.2015 / 21:04
1
answer

How to remove table row by passing its id to an object?

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...
asked by 24.10.2014 / 14:57
1
answer

Make else in jquery to control scrolltop

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",...
asked by 19.01.2015 / 17:09
1
answer

How to dynamically resize an app's WebPart?

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...
asked by 05.12.2014 / 19:30
1
answer

List multiple ul within a li using AJAX

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...
asked by 30.09.2014 / 16:41
2
answers

Text that slides when mouseover

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...
asked by 01.10.2014 / 14:23
1
answer

Error with jQuery.load () only in Safari (OSX)

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...
asked by 10.10.2014 / 19:13
3
answers

How to leave a 'fixed' div bounded by a main div?

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...
asked by 08.10.2014 / 15:19
1
answer

ignore cursor position on scrollbar

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(...
asked by 25.09.2014 / 21:38
2
answers

Attr with Internet Explorer

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...
asked by 29.09.2014 / 14:07