0
votes
0answers
13 views
Datatables - Show full table if search box is empty
I wanted that datatable's search should search in table only when user presses the Enter after giving some input, so I wrote the below code. Now the problem is that after searching something if user ...
1
vote
5answers
49 views
Jquery function?
Before writing any jquery they always recommend us using
$( document ).ready(function() {});
and place all our code within this function, but I noticed certain tutorial use this instead
...
6
votes
3answers
63 views
Select tags beginning with “x-” in jQuery
How can I select nodes that begin with "x-" tag name, here is a hierarchy DOM tree example:
<div>
<x-tab>
<div></div>
<div>
<x-map></x-map>
...
-9
votes
0answers
21 views
I want to remove purchase reminder code from menucool thumbnail slider jquery
I downloaded a thumbnail slider jQuery from menucool.com but now it sometimes shows the purchase reminder pop up. Please help me.
0
votes
0answers
40 views
Using a string to declare object
ab.c.title = {};
ab.c.title2 = {};
var searchstring = 'ab.c';
$.each(searchstring, function(x){
});
I have a string (var = searchstring) which will be used to build the ...
0
votes
1answer
38 views
Translate bar scroll fix
I have a website, and I get a fair amount of traffic from portugal and many other places that speak languages other than English, so I wanted to put a translate option, which I have now done.
My ...
0
votes
0answers
18 views
i cant get utterscroll to work? how to include it
have been trying to set up utterscroll and i cant seem to be able to
there is no clear instruction, i put both files provide in order and i call the event but nothing ...
0
votes
5answers
32 views
Creating and linking dynamic elements simultaneously
I'm creating two elements: foo and bar and I need these linked at the same time.
<div class="target-1"></div>
<div class="target-2"></div>
<form>
<input ...
0
votes
3answers
37 views
Couldn't append variable with single quote to anchor tag's title
I am getting data from database that has single quotes in it.
There are no problems in getting that, I get variable with single quotes in it
ex:
var title="vicky's blog";
Now the problem is I am ...
0
votes
4answers
53 views
Getting dynamically created element by ID (Jquery)
I am using JQuery, and I am creating elements dynamically via before() but I am unable to access those elements via ID. It's a bunch of code and I'd rather not post it if possible, but I am checking ...
0
votes
1answer
19 views
jQuery Merge Data Attributes
I'm trying to concatenate two data attributes when I click a button, and I'm wondering how I can merge them into one instead of adding the string before the first one,
HTML
<div id="parent">
...
0
votes
5answers
32 views
Make word in into a link jQuery
I'm trying to make this:
<td class="Monthly Status-cell">/fileid=XXXX</td>
Display as
http://www.domain.com/fileid=XXXX
Can you tell me what is wrong with my code?
...
0
votes
0answers
29 views
JAVASCRIPT steps to setting up utterscroll?
i have been trying to set up utterscroll and i cant seem to be able to
there is no clear instruction,
i put both files provide in order and i call the event but nothing
...
0
votes
0answers
32 views
Infinite scroll feature in jquery
I am using JQM and phongap do make an android application. I am trying to add an infinite scroll feature to the app but it is not working in the app. It is working perfectly in Firefox and chrome. ...
0
votes
1answer
27 views
Jquery get specific *instance of the class* that triggered an event
I am working on a game in which JSON data is turned into a bunch of classes that are painted on top of the main map. Each icon is a small 20x20 pixel box. Moving the cursor over each box is then ...