1
vote
1answer
20 views
Change the color of a text in div using jquery contains
Here the whole text inside the div get's red color. but I need only the "bar" word color to be changed
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ...
0
votes
5answers
36 views
Hiding and showing div in Jquery
I want to Hide a div On a button click. Here I am having 2 divs (Login and container). When the page loads, container will be hidden. And On click on a #submit button, I want to show the container div ...
0
votes
2answers
26 views
How use class methods in jQuery functions?
I want to make automate color parent changer in my js.
here is my html :
<div id="parent">
<div id="target" >
traget
</div>
</div>
And here is my js :
...
2
votes
3answers
34 views
Prevent multiple DOM searches in jquery
I created a function to return me a jquery element.
function GetDialogButton() {
return $('a.dialog');
};
This was done as the same element was used within multiple other functions. I thought ...
0
votes
1answer
30 views
My JavaScript does not work in IE7, IE8. Works fine in IE9 , IE10 and all other browsers?
Like I said in the title my JavaScript code does not seem to be working in IE7 or IE8 but works fine in IE9, IE10 and all other browsers I have tried
$(function(){
$("#vertical ...
0
votes
0answers
20 views
Trigger a function only once inside a continously triggered function
I have a function which is triggered on every mouse-down event when the mouse pointer is over the image.
Now, I call two functions in this mouse-down function.
I need one function Triangulate() be ...
0
votes
2answers
219 views
jQuery not working in Internet Explorer as it does in other browsers
I'm building a personal web page, and have put a temporary version on www.aegaeon.comule.com. I followed the Dragon Interactive tutorial (http://labs.dragoninteractive.com/pufferfish_article.php) to ...
1
vote
3answers
31 views
How to copy selection from one select to another?
I have two select elements, with same number of options, and same values for these options, but different (translated) texts.
How can I copy selection from one to another?
From user perspective, if ...
0
votes
0answers
7 views
Javascript plugin to recognise tags and free text
I'm trying to find a plug-in that recognises tags within free text - but to ignore free text , i.e. f I type
“I program in Java and JavaScript”
The ‘Java’ and ‘JavaScript’ words get recognised as ...
0
votes
7answers
32 views
Disable all links in parent block but not in one of its child block
I have a div having class say wrapper. Structure of html looks something like this.
<div class="wrapper">
<div class="header">
<a href="http://mysite.com">LOGO</a>
...
0
votes
0answers
3 views
freeze table header using datatables plugin
I am using datatables plugin and trying to freeze my table header and the table is created using displaytag.My issue is that there is some problem with the column width in the header. It is not same ...
1
vote
1answer
16 views
Input masking text box in mobile website form not working
I have a requirement where i need to apply input masking to text boxes in a form used in mobile website.
For example : I have the below form used in my mobile website where the phone no# need to be ...
0
votes
2answers
85 views
Navigation Menu Links
I've recently started restructuring a website, which currently uses frames and framesets.
I have now adopted a typical structure.html:
<body>
<div>
<div ...
0
votes
2answers
40 views
Any option to display multiple HTML pages in jQuery
I'm new to jQuery and trying to create a single HTML file of codes with multiple HTML pages. I even know that in jQuery mobile it is possible to link other HTML pages in a single file. so is there any ...
0
votes
0answers
30 views
How I can calling click event when drag and drop event
I want change event drag and drop, to click event for my objects.
I try this code
$("a").draggable({
start: function (event, ui) {
$(this).trigger("click");
}
});
But not work :(
...