0
votes
3answers
170 views
jQuery: How to select all elements that have a specific CSS property applied
for example:
.Title
{
color:red;
rounded:true;
}
.Caption
{
color:black;
rounded:true;
}
how to select by property named "rounded"?
css class name …
0
votes
5answers
99 views
how to change css style from jquery
my style is here
#mybox{
display:none;
}
my web is here
<div id='mybox'>
...
</div>
<script type='text/javascript'>
$(docume …
0
votes
2answers
48 views
how to get attribute from any selected object in jquery
for example
<a href="http://stackoverflow.com" class="selected">stackoverflow</a>
my jquery is here
alert($('.selected').attr('href')); …
0
votes
3answers
219 views
get iframe page title from javascript using jquery
How to get iframe src page title and then set main page title
…
3
votes
1answer
55 views
jquery attribute selector problem: Dynamic attribute selector
My code is here
$("a[href=$.jqURL.url()]").hide();
$.jqURL.url() return current page url.
But this code don't work
Is it possible to …
0
votes
2answers
54 views
how to handle any javascript load finished event using jquery
I have a blog. I'm insert yahoo pipe. I need to remove yahoo pipe icon after script load finish.
script is here>>
<script src="http://l.yimg.com/a/i/us/pps/listbadge_1.1.js" …
0
votes
1answer
46 views
all ajax ready event on jquery
i'm using $(document).ready but that will not work for all ajax ready. I need a callback event after all ajax load finished in jquery.
How to write this event using jquery? …
2
votes
2answers
86 views
is it possible to get anchor visited state from javascript?
i'm using jquery. i have a anchor list. i'm enumerate anchors, if it visited, set display:none;
i need when click on the anchor, anchor will changed to visited state from javascript …
0
votes
0answers
47 views
google reader json image
i'm using json to read shared google reader items. But item not contain image link. only contain [image: imagename] on content field .
How can get image url?
…
