I was under the impression that jQuery is JavaScript Framework, but when am searching for AJAX Framework it appears that jQuery is also being suggested as best AJAX Framework.
Reference: Best Ajax Framework
My Question:
What is Ajax Framework and how it is different from JavaScript Framework like jQuery ?
What are best known Ajax Fr...
I am developing a C#/ASP.NET web application in VS 2008. Currently this page is too tall. The buttons appear on top and then there is a large gap between these buttons and the resultLabel text. The following code is from my ASPX file. I have tried switching to the Design tab of this file and manually moving this label, but there is s...
<script type="text/javascript">
function HideDiv(id) {
document.getElementById(id).Style.display = "block";
}
</script>
...
I'm extremely new to JS and have this code that I'm trying to tweak. WHen I was adding the array, I had tested it with only a couple of items and it was working fine, now it just doesn't work, and I can't figure out what is wrong with it!!
Basically, I'm trying to change every instance of a card type with an image on a webpage
Here's ...
Hello im developing some backends in ASP.NET 2.0 and i have put all the images in Cache, GZIPED my CSS, JS files and everything to speedup the load of each options.
the performance its good and i have no problems with the clients but i want "MORE" fast loads and im looking for some recomendations.
Is important to mention that those web...
I'm trying to center a page on any resolution while still being able to use absolute positioning to move pictures. I figure that the best way would be to have a table positioned relatively in the beginning in the center of the page, then change it to absolute positioning in the onload of the page. I think the correct line is:
document.g...
input[disabled='disabled']
{
background-color:#FFFBF0;
color: #28B51D;
}
I am using this example but that is not run in iexplore.
But also run in other browsers.
If any body know then please tell me that how to change the color of disabled html control in iexplore.
...
Convert 2010-04-16 16:30:00 to "Tomorrow Afternoon" or convert another date to "this afternoon", "next year", "next week wednesday". You get the picture.
Anyone know of a PHP or Javascript library that can do this?
...
So I have simple video tag on HTML 5 page playing OGG video. I want to take Its RGB colors in format of array (assuming we know width and height) conteining colors for each pixel (from pixel 1,1 to maxWidth,maxHeight) like { {R:Color, G:Color, B:Color}, {R:Color, G:Color, B:Color} ,... }
...
Hi, I get a idea writing a greasemonkey user javascript that can detect which is the exactly real download link rather than an advertisement link or something else .
Actually, I find that some real download link is linked to .php . It's tough to detect it I think.
how could I do that, any ideas?
...
hi,
I am trying to make asynchronous calls using xmlhttprequest object
so it completely works fine in internet explorer but for firefox it wont work
a small code snippet of problem
if (req.readyState == 4) {
if (req.status == 200) //here firefox gives status code always 0 and for IE works fine
{
//read response
...
Hi,
I'm doing an eshop with goods displayed as "tiles" in grid as usual. I just want to use various sizes of tiles and make sure (via jQuery) there are no free spaces.
In basic situation, I have a 960px wrapper and want to use 240x180px (class .grid_4) tiles and 480x360px (class .grid_8) tiles. See image (imagine no margins/paddings th...
I'm authenticating via PHP:
// the php facebook api downloaded at step 3
require_once("facebook-client/facebook.php");
// start facebook api with the codes defined in step 1.
$fb=new Facebook( 'XXXXXXXXXXXXXXXXXXXX' , 'a3eaa49141ed38e230240e1b6368254a' );
$fb_user=$fb->get_loggedin_user();
var_dump($fb_user);
And the session is cre...
Hey,
I am hiding a TextBoxin my aspx page like this:
myField.visible=false;
Now I have a DropDown as well which tries to access the TextBox on IndexChange. The problem is, it cant access the hiffen TextBox and I am getting document.form[0] is Null or Not an Object. How can I solve that? Is the some check for that in JavaScript?
Than...
Hello,
I am new to Javascript and Web development and I have a question regarding the document.location.href.
I am using a cookie for storing the language the user prefers and then load the english or the swedish version depending on the language.
The default language in the beginning is the same as the browser's language, and my index...
I am searching for a Tooltip plugin/library for JQuery. It should be able to automaticlly position tooltips, like TipTip, and also support HTML content for the tips.
TipTip does fullfill both conditions, but:
Added HTML support with Tip Tip. You can now add HTML into the Title attribute (though this is not recommended if you want s...
I have a list which is dynamically built, but there are empty list items which need removing.
<ul>
<li>www</li>
<li>www</li>
<li>www</li>
<li></li>
<li></li>
<li></li>
</ul>
How od i do this with jquery? Thanks
...
For some odd reason the part where objects are shown and hidden in my script doesn't seem to be working. I'm not sure if its the fact firefox doesn't like that or whether its the function-based code I have (to save duplicating lines of code)?
There is a working example here and the javascript is here
** Here is the jquery **
$(documen...
Is it possible to upload files in an opensocial app to a remote appserver?
I think of a scenario using gadgets.io.makeRequest with the method set to gadgets.io.MethodType.POST and pass a file input to the gadgets.io.RequestParameters.POST_DATA.
...
I have an error in my GXT code on Internet Explorer (both Development Mode and not) when i try to attach a label to a panel.
The error is "Unknown runtime error number: -2146827687" but this error in a GWT module is throws always, in other gwt modules with a label attached to the panel the error there isn't.
The layout of panel is a Gri...