Questions tagged [jquery]
jQuery is a popular, cross-browser JavaScript library.
46 questions
0 votes
1 answer
1k views
Split or replaceState to remove an anchor tag from a URL?
On our landing pages, we have a call-to-action button that moves the user to an anchor on the page. But the addition of an anchor tag in the URL is messing up our tracking data. I have come up with ...
0 votes
1 answer
1k views
Is it possible to copy text from a webpage and retain the fonts in the CSS? [duplicate]
When a user copies the text he/she is not able to copy it with font and style. font and style is not added to the text copied on clipboard. <div class="box"> <p class="textstyle" id="...
-1 votes
1 answer
340 views
WebStorm not running jQuery in Chrome popup
I'm using WebStorm to code a website and running some code I found on Overflow to see if it would work as it fits my purpose. HTML <h2 class="quotes">first quote</h2> <h2 class="...
1 vote
0 answers
73 views
With the jquery version older than 3.2.1, messages pop up not under the form field, but in the upper left corner of the screen. How to fix?
There is a form, if you enter an error in the field below this field, an error or informational message pops up. Used by: jquery and notify All this works correctly up to version 3.2.1 of jquery ...
0 votes
0 answers
30 views
Track played second in mplayer
I am using mplayer.js. I want to check no of second my track is played. I have used method gettime() but it gives me 00:00.
0 votes
0 answers
157 views
Having trouble installing jQuery into Eclipse
I downloaded Eclipse, and I am trying to install jQuery in it. I found this on StackOverflow, and followed nielsvh's answer. I was able to build the project with Maven, but found trouble importing it ...
0 votes
1 answer
91 views
Is a Google CDN advantageous over another for same file
I am wondering about advantages to using a Google CDN over another CDN. For example, I saw this posting on SO with one of the answers giving the example to use Google's CDN for jquery. What are the ...
0 votes
1 answer
65 views
Redundant repetitive documentation links in PhpStorm quick-documentation when adding them manually
I'm using Php Storm 2016.2.1. To access the quick documentation for the jQuery API inside the IDE, I've got the jquery.d.ts from GitHub. When I introduce the file to the IDE through the form at File / ...
0 votes
1 answer
57 views
How to write content on another site with jQuery
I need some kind of technology/tool in order to write content on another website. I know that Ajax alows me to retrive content, but wont work for me. The technology/tool needs to access the url, type ...
1 vote
2 answers
4k views
How do I match string with URL in Jquery
I want to match a string in URL and redirect my page to other URL. Current URL is: http://example.com/?healing=f29c Here is my code: <script type="text/javascript"> jQuery( document )....
0 votes
1 answer
773 views
Re-Initiate flexslider to start animation from first child
I have 3 set of div's: <div id="img_collections_g1" class="flexslider"> <ul class="slides productPic"> <li> ...
5 votes
2 answers
10k views
I keep getting unresponsive script error in firefox for jQuery script
Yesterday I started getting unresponsive script errors like 6 times a day. And I know it has something to do with jQuery because I always get this in the error report: Script: resource://gre/modules/...
0 votes
1 answer
402 views
Why jeditable WYSIWYG plugin behave differently in different web-browsers? [closed]
Normally when we type a sentence in an wysiwyg editor and if we need one in next line we use to press the enter key and it will automatically insert a <br> tag. But when we use the jeditable ...
0 votes
1 answer
1k views
Updating database table values through AJAX
My test.php page is as under: <!DOCTYPE html> <html lang="en"> <head> </head> <body> <h3>Setting</h3> <p>Name:<input type="text" id="updatetherone1"/...
1 vote
0 answers
268 views
Logging into a website throws up some code
So I was logging into a website earlier today on my PC, and this gets thrown up for me " + ""; return head; } function htmlFooter() { return "" + ""; } function hideFrames() { var gqFrame = document....
0 votes
1 answer
71 views
override reformatting in forms by webmaster?
I'm at a website, trying to complete an important form for work. The webmaster created a form that reformats the phone number to add a "-", but the form does not accept submissions of phone numbers ...
2 votes
2 answers
3k views
Chrome can't download jQuery, other browsers can
For some reason Chrome on my computer absolutely refuses to download this file: http://code.jquery.com/jquery-1.9.1.min.js When I try, I get this error: Failed to load resource: net::...
1 vote
0 answers
208 views
Is there a way to search ajax code for multiple words in Chromium?
There are various extensions in the Chrome Web Store that highlight multiple search strings in webpages e. g. Find Many Strings, MultiHighlighter or efTwo. None of them seem to support searching in ...
-2 votes
1 answer
37k views
pass a JavaScript variable to php via Ajax [closed]
I try to pass a JavaScript variable to php via Ajax so then I can make sql query. I call function votepick(id ) onchange event. However not working and get error Uncaught ReferenceError: $ is not ...
0 votes
0 answers
2k views
Invoke bat file from JavaScript file with parameters
What I need to do is to pass two parameters from HTML to a batch file. I am invoking a batch file from a JavaScript method inside HTML, and I am able to invoke the bat file, but I can't pass any ...
1 vote
0 answers
433 views
YouTube style linking inside HTML5 Video player
After a video has played on YouTube, often there will be a follow up link after the video has finished playing in the form of related videos. I'm looking to implement similar into my HTML5 Video. It ...
2 votes
2 answers
6k views
How to get around ERROR 405 Method Not Allowed with HTTP post
I'm trying to make an HTTP post on this website: https://www.colorado.gov/revenueonline/_/#2 (click Verify a Sales Tax License in the bottom right) using wget with the following command: wget --...
2 votes
1 answer
3k views
How to prevent javascript timeout function?
A website that I frequent utilizes the following javascript function idle() { $(document).unbind('mousemove'); $(document).unbind('keydown'); $(document).on('mousemove', function ()...
0 votes
1 answer
632 views
TextMate can't autocomplete jquery methods by pressing esc?
I'm using TextMate (mac), I was told that this app can autocomplete jQuery methods or functions by pressing the esc key. I have the script tag like this: <script type="text/javascript"> $("...
1 vote
0 answers
516 views
Sites using nvd3.js for visualizations
I've recently started using a free javascript library called "NVD3.js" to build "interactive visualizations" for our commercial web applications. I'm thinking of applying it to our public web sites as ...
0 votes
2 answers
228 views
Generic automated updating of desktop applications
Is there an application that will silently update a local folder containing all the files in a web directory? Or even better, if there is a .zip file, it will extract the files into the specified ...
0 votes
0 answers
191 views
Firefox 18 does not open select box
I'm using Firefox 18 under Windows XP SP3 to open a page I built using jQuery and jQuery UI to generate a form with 'select boxes'. The select boxes are not being opened. The log has no error messages,...
1 vote
4 answers
408 views
jQuery code works without jQuery library
src="http://code.jquery.com/jquery-latest.min.js" charset="utf-8"> function switch01(){ $("#con01,#con02,#con03").hide(); $("#con04").slideToggle("slow"); }; As I understand, the above ...
0 votes
1 answer
135 views
How to find matched parenthesis
Suppose I use Visual Studio 2010 to write jquery code, there are a lot of parenthesises. I may miss one or more parenthesises. What i sthe quick way to find or check matchness of parenthesis?
0 votes
1 answer
2k views
Store data for later reuse in Greasemonkey
I would like to add a remove/blacklist button next to all links in the Blogspot statistics. Some of them are referrer spam, and I would like to remove them forever. So far I'm selecting them using ...
1 vote
1 answer
524 views
Stylebot extension: adding access keys for jquery?
Is it possible to use a program like Stylebot to have a custom CSS rule which activates a region when a number is pressed? I want 1 to click region 1, 2 to "right-click" region 2, and 3 to click ...
0 votes
1 answer
2k views
How to execute a daemon on the server from JQuery with Ajax (Linux server with PHP5)
I am trying to make Ajax start a daemon on the server with the following JQuery code. The alert pops up but the daemon doesn't start. What is the proper way to format the section that is $.ajax({...
1 vote
0 answers
427 views
Adobe Edge alternatives
Are there similar software or alternative to Adobe Edge? I'm looking for a software where you can animate your html elements visually or using a GUI and then it will export in HTML and using ...
2 votes
4 answers
978 views
Adblocking jQuery
As a privacy-concerned user, I try to make sure that Google, Facebook and the like do not get informed of whatever page I visit through web bug like Google Analytics and the Facebook "I like" button. ...
3 votes
7 answers
5k views
Is there a way to run a website in full screen in Windows?
Is there a way to run a website in full screen in Windows? I'm running a Webpage which is only a form and it's running on a kiosk in a shopping mall. I want this page to display in full screen. no ...
1 vote
0 answers
710 views
Installation on Linux & Win7: Aptana, PostgreSQL, Ruby, JQuery (WWW on Apache)
Basically I have 2 systems, where I want to develop (and use) my application: A Linux (Debian) system. This is my server. Here I have PostgreSQL (& phpPgAdmin), Apache, Ruby. Typically I use this ...
1 vote
3 answers
6k views
Loading Jquery plugin on Linux
I'm running CentOS 5.5 64bit - Trying to load a jquery plugin from a PHP file. The line I am using is... <script type="text/javascript" src="/tools/jquery.js"></script> ...This does not ...
-1 votes
2 answers
3k views
Looking for a great Linux code editor that has auto-indent AND auto-outdent [closed]
I code primarily in jQuery/JavaScript, and I'm looking for a text editor for Linux that has auto-indent and auto-outdent (seems to be tough to find that). Any suggestions? I've checked Gedit, Cream, ...
5 votes
5 answers
5k views
jQuery disabled on Firefox. I cannot enable it
Last night, pragmatist Vaio Care automatically fixed (!) the errors on my Sony Vaio laptop and soon afterward, a big problem emerged. I start Firefox 3.6.16 and navigate to superuser.com (and other ...
7 votes
3 answers
13k views
Redirect specific url requests to local site
Is there a specific way to redirect requests for a specific URL from a browser to a local site or location?e.g. setting a Firewall or some OS rule to redirect a request for the jQuery lib to a ...
2 votes
2 answers
262 views
How can I insert my own JavaScript into page?
I'm using Internet Explorer as the default browser. (Firefox is not an option). There are some web apps that I like but whose layout and workflow does not quite agree with me. Given that I am ...
-1 votes
2 answers
195 views
How to make http://qilayout.com/ like header effect? [closed]
I wanna know they made their logo .. i think... that's jQuery but i want to play fade effect like that in Css and html . with Opacity =D. So.. if anyone know... tell me how to ? Thanks
2 votes
2 answers
385 views
Userjs in Opera. What about jQuery?
Does it work, if I specify a folder for Operas userjs and that folder contains jQuery.js? Can I then use jQuery in my own scripts?
2 votes
3 answers
508 views
Am I crazy? Demos on jQuery's 'effects' page not working in any browser [closed]
I want to make sure I'm not crazy, because I can't get any of the effects demos to work on jQuery's demo pages. I thought it might be my new Firebug version (1.5.2) or Firefox in general, but they're ...
1 vote
1 answer
396 views
Directory Browsing on Apache
I am listing a couple of stuff that I want people to download for my school and remembered that some sites had directory browsing done with cool little icons displaying the file types. I wanted to do ...
0 votes
2 answers
130 views
Downloading tutorial videos from sites
Once in a while when I come across excellent screencast tutorials I download them for viewing offline. Any ideas on how I can extract this tutorials from this particular jquery site?