Linked Questions
18 questions linked to/from Installing jQuery?
0
votes
1
answer
208
views
Mouse over event not being triggered for a jQuery class selected element [duplicate]
I have a div which on my simple page is retrieved through jQuery's class selector. I want to then attach a mouse over event listener to this div...
<body>
<div class="stuffBox">
<...
6381
votes
72
answers
4.5m
views
How do I include a JavaScript file in another JavaScript file?
How do I include a JavaScript file inside another JavaScript file, similar to @import in CSS?
1045
votes
23
answers
169k
views
Best way to use Google's hosted jQuery, but fall back to my hosted library on Google fail
What would be a good way to attempt to load the hosted jQuery at Google (or other Google hosted libs), but load my copy of jQuery if the Google attempt fails?
I'm not saying Google is flaky. There ...
187
votes
17
answers
66k
views
Microsoft CDN for jQuery or Google CDN? [closed]
Does it actually matter which CDN you use to link to your jquery file or any javascript file for that matter. Is one potentially faster than the other? What other factors could play a role in which ...
5
votes
6
answers
19k
views
How to disable "do you want to view only the webpage content that was delivered securely" warning?
My website has complete https and its using outer jquery resource which is http.
In IE 8, when I'm redirecting the site it giving me
"do you want to view only the webpage content that was delivered ...
3
votes
1
answer
14k
views
Fetch an html element from external page with javascript
I'm trying to create a function in javascript the will create a video html element, and get the source by retrieving a source element from another web page
I've seen other questions with answers ...
0
votes
1
answer
5k
views
How to make a CheckBox List behave like Radio Button in Vb.net?
Let me explain myself i'm doing an Application in VB.net asp.net and I Want to put a CheckBox List instead of Radio Button cause my customer want it square and not round. The Only problem i got is ...
1
vote
1
answer
7k
views
Additional Navigation bar on click
I have a navigation bar with the section "Contracts" and I was wondering if it were possible, and how would I go about adding an additional navigation bar to expand underneath when this button is ...
2
votes
2
answers
1k
views
Changing backgroundColor with javascript affects CSS's :hover
I have set of 6 divs, and when I click on each of them, a certain div changes its innerHTML, like some kind of menu. When user hovers over those "buttons" (actually divs), they highlight with CSS's ...
1
vote
2
answers
2k
views
Include txt file from dropbox to html file
I have a txt file on my Dropbox account.
My webpage is hosted on a server and I can not upload files to it from home.
But I would like to insert some informations on my webpage and so I decided to ...
0
votes
2
answers
3k
views
Run javascript when modalpopupextender is shown
This questions was already answered here - How to specify javascript to run when ModalPopupExtender is shown - but the accepted solution is not working for me.
The modalpopupextender is declared as ...
-1
votes
4
answers
900
views
Need to hide <tr> by name attribute
I need to hide tr by attribute name here is the code
<tr name="see items ordered">
<td>
</td>
</tr>
I tried the below code but its not working
<script type="text/...
0
votes
1
answer
282
views
Umbraco active item in navbar doesn't work
I have currently been working on an application, and i found the active status of the selected view in the navbar to be important: design wise.
Yet i have not managed to get it to work, i am ...
0
votes
1
answer
281
views
ajaxComplete - how to call/trigger?
How do I trigger a function when an AJAX response is complete?
On change of the drop down the manageImagesDynamicObjectDetails function is called:
<select id="imageComponentSelection" name="...
-2
votes
3
answers
103
views
Select div in jquery through id in variable [closed]
How to select a div in jquery using id. That id which is store in variable.
<div id="d3">
some thing is here...
</div>
jquery Code:
var id = 3;
$("#d" + id)
I am using this code ...