Tagged Questions
29
votes
7answers
8k views
Multiple javascript/css files: best practices?
I have about 7 Javascript files now (thanks to various jQuery plugins) and 4-5 CSS files. I'm curious as to what's the best practice for dealing with these including where in the document they should ...
17
votes
7answers
1k views
Update whole page on Ajax request
I have an AJAX request that can have two possible outcomes:
The server responds with a message which I should place in a <div>
The server responds with an HTML page, in this case I need to ...
13
votes
6answers
2k views
Cross browsers mult-lines text overflow with ellipsis appended within a width&height fixed div?
I made an image for this question, should be easier to understand.
I've tried some jquery plugins out here and there, but cannot find the one i'm looking for. Any recommendation? ideas?
13
votes
5answers
4k views
Convert MySql DateTime stamp into JavaScript's Date format
Does anyone know how I can take a mysql datetime stamp, such as YYYY-MM-DD HH:MM:SS and either parse it or convert it to work in JavaScript's Date() function, such as.. Date('YYYY, MM, DD, HH, MM, ...
12
votes
11answers
1k views
What are good PHP and MySQL type Blogs to read? [closed]
I searched and found many topics similar to this on Stackoverflow, but they were all for languages that I do not use. I am interested in reading good blogs with an RSS feed in topics related to PHP, ...
12
votes
5answers
922 views
AJAXify site
I have legitimate reasons to do what I am trying to explain. I have an existing site say abc.com which has regular pages etc. everything written in php. Now I would like to AJAXify the site i.e. when ...
12
votes
5answers
14k views
Is it possible to preload page contents with ajax/jquery technique?
Is it possible to preload all page contents (like showing a loading bar / animated gif.. or loading text.. ) until the contents are fully loaded and then displayed to the user/visitor ? If this is ...
10
votes
5answers
2k views
Javascript/PHP Family Tree Builder with Multiple Parents
Is there an existing PHP, Javascript, or even command line tool that can build a family tree in HTML (preferably) or at the very least create an image for it? Multiple parents are a requirement. I ...
10
votes
9answers
3k views
How to implement a chat room using Jquery/PHP?
I'm looking to implement a chat room using PHP/Javascript (Jquery) with both group chat and private chat features.
The problem is how to continually update the interface in a natural way and possibly ...
10
votes
2answers
491 views
Does HTTPS connection disabled jQuery?
I have the following php script which works flawlessly in normal circumstances (i.e. visiting the page directly):
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ...
10
votes
4answers
708 views
Writing a chat application
I'm wondering what's the right way to code a chat application for thousands of users.
I'm just confused how will I be able to ping the server using AJAX every second or maybe less and check if there ...
9
votes
2answers
383 views
jquery Autocomplete working with older versions of the browsers but not new ones?
here is the JSON data for my auto complete
{ "list" : [ {
"genericIndicatorId" : 100,
"isActive" : false,
"maxValue" : null,
"minValue" : null,
"modificationDate" : ...
9
votes
2answers
276 views
jQuery (or any web tool) Nested Expression Builder
I would like to add a feature to a web app I am developing to allow the user to create rules with an expression builder. Such as the one used in Magento (picture in link below).
...
9
votes
1answer
252 views
countdown timers on a website question
I am building a penny auction site and I got to the part with timers (i'm using symfony framework). Here I've got a few questions and issues.
So, I have about 10 products on the homepage I need to ...
9
votes
4answers
577 views
Combine jQuery and Zen-Coding php ports to emulate client side programming style on server side scripts
When I write client side code, I use HTML/CSS/JavaScript and lately jQuery to both speed up coding, and use improved methods to achieve the same goal.
In my text editor I use zen-coding to speed up ...
9
votes
3answers
236 views
Ajax Security (i hope)
I'm building a browser game and im using a heavy amount of ajax instead of page refreshs. I'm using php and javascript. After alot of work i noticed that ajax isnt exactly secure. The threats im ...
9
votes
6answers
831 views
Client-side or server-side processing?
So, I'm new to dynamic web design (my sites have been mostly static with some PHP), and I'm trying to learn the latest technologies in web development (which seems to be AJAX), and I was wondering, if ...
9
votes
2answers
334 views
JQuery .get() only passing first two data parameters in url
I have a $.get() call to a PHP page that takes 4 GET parameters. For some reason, despite giving the $.get() call all 4, it only passes the first two. When I look at the dev console in chrome, it ...
9
votes
7answers
4k views
9
votes
9answers
29k views
jqGrid with JSON data renders table as empty
I'm trying to create a jqgrid, but the table is empty. The table renders, but the data doesn't show.
The data I'm getting back from the php call is:
{
"page":"1",
"total":1,
"records":"10",
...
8
votes
7answers
498 views
Browsers keep eating memory with AJAX + setInterval
I need to update a lot of data within a given interval with JavaScript. The problem is, no matter of what JS library i use (even bare-bone js), that all browsers seem to allocate memory on every AJAX ...
8
votes
5answers
2k views
is ther something like isset of php in javascript/jQuery?
Is there something in javascript/jQuery to check whether variable is set/available or not? In php, we use isset($variable) to check something like this.
thanks.
8
votes
7answers
301 views
conditional or js to detect whether user is on windows XP?
Because windows xp renders certain fonts so poorly, i would like to detect whether the user is using that OS and add a class to the body accordingly.
I'm looking ideally for an html conditional ...
8
votes
7answers
2k views
Uploadify Hanging at random on 100%
I am using Uploadify to enable my users to upload images via my web application.
The problem I am having is that every now and then (at what appears to be random) when the progress bar reaches 100% ...
8
votes
5answers
22k views
Show/hide fields depending on select value
I am trying to show and hide a few form fields dependent on the value of one of my select fields. I am looking to use arrays to hold what should be show and what should not be show for each select ...
7
votes
1answer
555 views
DataTables, Ajax Pipelining
I'm using DataTables with pipelining. I works great except when I tried to enter an extra column to hold "edit" links. See this table.
Here is a snippet of server_processing.php showing the columns:
...
7
votes
3answers
706 views
Securing and/or encrypting (hiding) POST variables in a jQuery ajax request
I have an invite form on a web application I am working on. This invite form requires the user to select an email account and then enter a username and a password. These details are sent as POST ...
6
votes
1answer
175 views
Posting and returning data using jquery corrupts å ä ö
This is a question with a lot of information on the net. Still, I haven't solved it.
I am having a dynamically loaded form on a web page. I submit it using jquery $.post. My page is for Swedes so it ...
6
votes
12answers
499 views
jQuery cannot change a value where JS can because the library is out of date
Simple answer:
The jQuery library my code base was using was out of date.
If yours is up to date try the following:
Step though the unminified version of jQuery to see if the issue is inside the ...
6
votes
3answers
330 views
Customize jquery autocomplete result
I'm using the jQuery autocomplete with a remote data source
$( "input#searchbar" ).autocomplete({
source: function( request, response ) {
$.ajax({type: "post",
...
6
votes
7answers
501 views
How to prevent users from copying content from website
Is there any way to prevent users from copying content from website and display encrypted code in view source?
I know that techies will always find a way but if it prevents normal users it's OK.
6
votes
4answers
1k views
How can I change the page URL without refreshing the page?
How do I change the URL without refreshing the page?
I've built a website with CodeIginer and I want to implement AJAX and JQuery in one of my pages. The problem is; when I load the content, the URL ...
6
votes
1answer
86 views
Scrape with wildcards and php
Hey guys, I'm having a hard time visualizing and conceiving away to scrape this page: http://www.morewords.com/ends-with/aw for the words themselves. Given a URL, I'd like to get the contents and then ...
6
votes
5answers
376 views
What's faster? Ajax loading JSON or Ajax loading complete output
I wanted to see different views / opinions on this.
I've got Jquery invoking a function through ajax. It loads data two ways:
The ajax script loads JSON data from the same server, then uses JS to ...
6
votes
4answers
3k views
CodeIgniter and Javascript/Jquery Library
As title said, I'm trying to figure out how to use javascript and jquery libraries on CI.
Following instruction in the docs, I load the library in my controller:
...
6
votes
3answers
944 views
Why doesn't jQuery.parseJSON() work on all servers?
Hey there, I have an Arabic contact script that uses Ajax to retrieve a response from the server after filling the form.
On some apache servers, jQuery.parseJSON() throws an invalid json excepion for ...
6
votes
7answers
2k views
Best PHP framework for jQuery? [closed]
I've read all the answers on stackoverflow for similar questions but no one really laid down an explanation: why is zend/symfony/kohana/cakePHP the best for jQuery? what is the difference?
I'm ...
6
votes
4answers
868 views
getting upload file size before upload
When the user selects a file to be uploaded, is there a way I can get the exact size of this file before the upload even begins. I'm guessing this needs to be done on the client side with jquery or ...
6
votes
2answers
698 views
Libraries and pseudocode for physical Dashboard/Status board
OK, so I bought a 46" screen for the office yesterday, and with the imminent risk of being accused for setting up an "elaborate World Cup procrastination scheme", I'd better show my colleagues what ...
6
votes
8answers
1k views
Why doesn't my <script> tag work from php file? (jQuery involved here too)
Here is what I am trying to accomplish. I have a form that uses jQuery to make an AJAX call to a php file. The php file interacts with a database, and then creates the page content to return as the ...
6
votes
3answers
4k views
Combining and Compressing multiple JavaScript files in php
I am working on a PHP app that requires eight javascript files (hello web2.0).
I am wondering what the best way combine and compress all of the files dynamically.
Am I phrasing the question ...
5
votes
2answers
53 views
Scripts being stripped with jQuery .load
I don't think this question has been posed before, at least not in the way I need it answered. I'm using jQuery's .load function. I have a problem when loading just page fragments.
When using ...
5
votes
1answer
99 views
Is using CSS classes for JS markup a bad practice?
The scenario:
A homepage that is generated with PHP and a template engine.
The page is being redesigned.
The new design is based on jQuery UI.
The current CMS uses multiple templates: a page ...
5
votes
2answers
54 views
Is there a better way to hide & store read only data for a JQuery/JavaScript app than putting it in PHP arrays?
I am making a mostly client side JavaScript / JQuery app that processes data I store on the server. I do not want this data easily scrape-able by bots, so right now I am storing all of the read-only ...
5
votes
2answers
171 views
A Responsive Photo-wall Gallery with Swipe Functionality
I'm looking to build a javascript/jquery gallery that meets the criteria below, and would love to know if there are any existing gallery modules that have all/most of these features:
1. Photo wall ...
5
votes
2answers
155 views
How to play multiple sound files on one Web Page? (on click best practice)
I have a page where there is a list of vocabularies. I have a TTS for each vocabulary.
The current approach that I am using is to include an mp3 flash player for each vocabulary.
This creates delay to ...
5
votes
3answers
938 views
best way to convert a div to image? using either php, javascript or jquery
I have a div containing images like so:
<div id="Created_Design">
<img src="images/image1.png" style="position: absolute; left: 8px; top: 172px;">
<img src="images/image2.png" ...
5
votes
2answers
858 views
jQuery autocomplete in background of input text box
I have a jQuery text box autocomplete script which uses a PHP script to query a MySQL database. Currently, a result is displayed under the text box however I want it to appear as if it is faded out in ...
5
votes
14answers
1k views
How do I run a function only when a div gets loaded?
I want to run a function only when a div gets loaded.
When I load the page, a number of files are loaded. At the end of the list, PHP echoes a div. When this one is displayed, jQuery should run a ...
5
votes
2answers
315 views
Twitter api authorization of my application
I am using this twitter api library and so far everything is great. My problem (well not really a problem more a user experience) is that every time you want to sign in with twitter you need to open a ...