how to use multiple ID in javascript Preloader? [closed] - javascript

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
that's my code
Click Here
example
$(function(){$("#album-left", "#album-right").loader();});

Use a CSS Selector
$(function(){$("#album-left, #album-right").loader();});

Related

quill text editor for textarea is not working correctly with bootstrap [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I want to use quilljs-textarea in my project hosted here, but it gives me weird output as shown:
please any body help me.

Jquery hide() not working after ajax call [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
The jquery code following :
$(document).ready(function () {
$("#cross-sells").hide();
});
Please help me.

Scripts in HTML [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
Another question I have is this; I want to execute a script (docs()) when you click text, I've tried using this code:
<p><span class="skill">Documentation can be found here.<script>docs()</script></span></p>
But it doesn't work, any ideas?
Try to use onclick
<p><span class="skill" onclick="docs()">Documentation can be found here.</span></p>
document.getElementsByClass('skill')[0].onclick = docs;

after window.print = "" how can I use javascript to print? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
After window.print = "" how can I use javascript to print?
I just want the window.print() can work in Google Script
You can get it out of window's constructor:
window.constructor.prototype.print.call(window);

open popup in IE [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 4 years ago.
Improve this question
window.open(address,'Audio Player','width=340,height=30,directories=no,location=no,menubar=no,resizable=no,scrollbars=no, status=no,toolbar=no');
this is my code which is not working in IE. bu i want in IE.can any one suggest me to how
You can't have a space in the Window title in IE. Change it to 'AudioPlayer'

Categories

Resources